Create a new postgres database named studebt_db1 on your local machine
Set up virtual environment
Install pip dependencies from requirements.txt
After cloning this repo, create a .env file inside the Backend folder.
Backend/.env
Store the password for your postgres database as an environment variable inside the .env file and save.
Backend/.env
DB_PASSWORD="******"
I will use python-decouple to configure DB_PASSWORD
Create a new postgres database named
studebt_db1
on your local machineSet up virtual environment
Install pip dependencies from
requirements.txt
After cloning this repo, create a
.env
file inside the Backend folder.Store the password for your postgres database as an environment variable inside the .env file and save.
Backend/.env
I will use python-decouple to configure
DB_PASSWORD
Then make migrations and migrate