-
Navigate to the
api
folder. -
Ensure
python
andpipenv
are installed. -
Duplicate
.env.example
and rename it to.env
. -
Update the database configurations in the
.env
file. -
Execute the following commands:
$ pipenv shell $ pipenv update $ python manage.py runserver
-
The backend server will be accessible at http://127.0.0.1:8000
-
Navigate to the
web
folder. -
Ensure
node.js
is installed. -
Duplicate
.env.example
and rename it to.env
. -
Update the backend API URL in the
.env
file. -
Execute the following commands:
$ npm install $ npm run dev
-
The frontend application will be accessible at http://localhost:3000