- install python
- install the django library
- install ngrok in your file system root
- install project dependencies with
pip install -r requirements.txt
python manage.py runserver
- open terminal at root and run
./ngrok http 8000
django-admin startproject mysite
python manage.py startapp <APP_NAME>
python manage.py check
python manage.py makemigrations <APP_NAME>
python manage.py migrate
python manage.py shell
python manage.py runscript <SCRIPT.py>
python manage.py createsuperuser
workon python3
Note: You can also launch the console from the web which will automatically lauch the virtual env.