File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -64,26 +64,33 @@ Implement data backup and synchronization features to prevent data loss and ensu
6464To run the API locally, follow these steps:
6565
66661 . Clone the repository:
67+
6768``` git clone https://github.com/devsylva/TaskFlow-API.git ```
6869
69702 . Create a virtual environment inside the project directory:
71+
7072``` python -m venv venv ```
7173
72743 . Activate the virtual environment:
75+
7376``` source venv/bin/activate ```
7477
75784 . Install dependecies:
79+
7680``` pip install -r requirements.txt ```
7781
78825 . Change ` .env.templates ` in the src/taskflow direct to ` .env ` and setup your environment variables
7983
80846 . Setup the database:
85+
8186``` python manage.py migrate ```
8287
83887 . Create a superuser account:
89+
8490``` python manage.py createsuperuser ```
8591
86928 . Start the development server:
93+
8794``` python manage.py runserver ```
8895
8996
You can’t perform that action at this time.
0 commit comments