https://git-scm.com/download/win
https://www.sourcetreeapp.com/
https://code.visualstudio.com/
http://docs.python-guide.org/en/latest/starting/install/win/
https://devcenter.heroku.com/articles/heroku-command-line
pip install virtualenv
virtualenv venv
source venv/Scripts/activate
#venv\Scripts\activate
pip install -r requirements.txt
pip install -r requirements.txt --upgrade
python manage.py migrate rucken_todo 0001_initial
python manage.py migrate
python manage.py collectstatic --noinput
pip freeze > requirements.txt
python manage.py createsuperuser
source venv/Scripts/activate
#venv\Scripts\activate
python manage.py migrate
python manage.py collectstatic --noinput
python manage.py createsuperuser
#admin: pa55w0rd
python manage.py makemigrations -n Name
python manage.py makemigrations --empty rucken_todo -n Name
python manage.py runserver 0.0.0.0:5000
git add .
git commit -m "prepare backend"
git push -u origin master
npm install -g npm
cd frontend
npm install
cd frontend
npm run start
cd frontend
npm run build
source venv/Scripts/activate
python manage.py migrate rucken_todo 0001_initial
python manage.py migrate
python manage.py collectstatic --noinput
python manage.py runserver 0.0.0.0:5000
git add .
git commit -m "deploy"
git push -u origin master