A bare Python app, which can be deployed to EvenNode and will get you started with Python apps.
Make sure you have Python installed.
$ git clone [email protected]:evennode/python-getting-started.git
$ cd python-getting-started
$ pip install -r requirements.txt
$ python manage.py collectstatic
$ gunicorn gettingstarted.wsgiYour app should now be running on localhost:8000.
In order to deploy to EvenNode you need to create a new Python app with EvenNode.
When your app is created, you can use FTP deployment or git to deploy your app.
For more information about deployment visit our documentation.
The following code helps you deploy via git.
$ git clone [email protected]:evennode/python-getting-started.git
$ cd python-getting-startedLookup the git repository name listed on the "Information" tab of your app in EvenNode's web console to add a remote git repository.
$ git remote add evennode [email protected]/your-app-repository-here.gitDeploy app to EvenNode.
$ git push evennode masterFor more information about using Python on EvenNode, see our documentation: