Skip to content

Commit 3c87544

Browse files
Update README.md
1 parent b3a22c1 commit 3c87544

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

README.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
11
# full-stack-todo
22
Todo full stack in django and react
33

4-
## still in development
4+
Steps to set up your project
5+
6+
1.) Clone your project in your local machine
7+
```
8+
git clone https://github.com/theoptiplexcoder/full-stack-todo.git
9+
```
10+
11+
2.) change directory to $HOME/path/to/cloned/directory/todo
12+
13+
3.) create a virtual environment using python3-venv python module
14+
15+
```
16+
python3 -m venv env1
17+
```
18+
19+
4.) activate your env (in the above case env1)
20+
```
21+
source env1/bin/activate
22+
```
23+
24+
5.) Install Djnago using pip (Python package manager). Make sure you have activated your virtual environment
25+
26+
```
27+
pip install -r require.txt
28+
```
29+
30+
6.) Run your local server to view the project
31+
```
32+
python3 manage.py runserver
33+
```

0 commit comments

Comments
 (0)