This is the backend for the project.
Frontend - https://github.com/NotShrirang/budget-project-frontend
Clone the project-
git clone https://github.com/atharvabhide/budget-project-backend.git
Install dependencies-
pip install -r requirements.txt
Create env file for MySQL credentials-
Create a .env file in the project folder with the following fields:
DB_NAME = <db_name>
DB_USER = <db_user>
DB_PASSWORD = <db_password>
DB_HOST = <db_host>
DB_PORT = <db_port>
Migrate the project-
python manage.py migrate
Run local server-
python manage.py runserver