-
hi! can i know how to run this project locally once cloned? i need to try a few changes and i have no idea how to run it. will be of much help. thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @deathmukh, and thanks for reaching out. 1- After cloning the repo to your local drive, navigate to the root directory when you are inside the brainchop folder. 2- Then, open the command line inside the root directory and execute the following command to start the local HTTP server: If you have Python -2, from the command line, run:
If you have Python -3, from the command line, run:
3- Now you can open the browser to see brainchop in action by using this address http://localhost:8020/ I selected 8020 for the above example; if that address is not available on your machine, you can use any address, such as 8000 to 8099 Let me know please if that works for you. |
Beta Was this translation helpful? Give feedback.
Hi @deathmukh, and thanks for reaching out.
1- After cloning the repo to your local drive, navigate to the root directory when you are inside the brainchop folder.
2- Then, open the command line inside the root directory and execute the following command to start the local HTTP server:
If you have Python -2, from the command line, run:
If you have Python -3, from the command line, run:
3- Now you can open the browser to see brainchop in action by using this address http://localhost:8020/
I selected 8020 for the above example; if that address is not available on your machine, you can use any address, such as 800…