Django Jelastic

In this post we will be showing how to create a Django hello world in Jelastic. Our hosting provider is Reclaim Cloud. Create a local Django hello world # Make a directory with an empty README mkdir django-test cd django-test touch README.md # Create a .gitignore file curl https://www.toptal.com/developers/gitignore/api/django -o .gitignore # Initialize a git repo and rename master to main git init git add -A git commit -m 'Initial commit' git branch -m master main # Re-enter the directory so your shell prompt picks up it is in a git repo cd; cd - # Create a virtualenv and activate it virtualenv venv ....

April 17, 2021 · 5 min · Elijah Gagne