Django app Create&Deploy script
This script automatically installs and deploys Python + Django + Gunicorn + NGINX server.
- Install Debian
- Install sudo (as root):
su root
apt-get install sudo
- Add user to the sudo group and reboot (as root):
adduser <user> sudo
reboot
- Download django-deploy script
- Run the script:
chmod +x deploy.sh
./deploy.sh
- Script will ask you project name, enter it.
- Wait until the script has finished job.
- Open browser in your Debian and go to http://127.0.0.1
- Well done!