- Run
npm run buildto create build folder - Run 'source /venv/bin/activate' to load the enviroment
- Run
python manage.py runserver - Click on the development server link and app should be loaded in browser.
git checkout <user branch>
- Push the changes to own branch
git statusto check statusgit add <file>to add all modified filesgit commit -m <message>to commit added filesgit pushto push added/commited files
- Merge and push from master branch to master remote
git checkout mastergit merge <user branch>git push
- Go back to own branch
git checkout <user branch>
- Make sure local branch is updated
git add <files>git commit -a -m <message>git push
- Pull from Master branch
git checkout mastergit pull
- Merge with Master from own branch and push
git checkout <user branch>git merge mastergit push
AIzaSyAp3yqFx2Z7gQKR-4RtDT2BbNQ6Wf7noLo