Cloud Computing Project for 6th Sem
python3 -m venv env
# To create a virtual env.cd env && source bin/activate
# To activate venv. Do this everytime you start to work.
git clone 'your_path'
cd selfie-less-act
- Create a new branch using
git checkout -b 'branch_name'
pip3 install -r requirements.txt
python manage.py createsuperuser
python3 manage.py runserver
- When changes to the database schema are made (the models), run
python manage.py makemigrations
and thenpython manage.py migrate
from the repo directory in order to make the corresponding changes in the schema to your local database. - Mostly not needed at the moment as we are using sqlite3 rn
- Pull using
git pull origin `branch_name`
git add .
git commit -m "Message"
git push origin 'branch_name'