cd softway_sys
python manage.py runserver
pip freeze > requirements.txt
Python 3.7 or Higher Use venv as environment setting and connect to Anaconda's python or something else
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py migrate --fake <your_app> find . -path "/migrations/.py" -not -name "init.py" -delete find . -path "/migrations/.pyc" -delete
https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how-to-reset-migrations.html
python manage.py check --deploy https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/