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 git@github.com:evennode/python-getting-started.git
$ cd python-getting-started
$ pip install -r requirements.txt
$ python manage.py collectstatic
$ gunicorn gettingstarted.wsgi
Your 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 git@github.com:evennode/python-getting-started.git
$ cd python-getting-started
Lookup 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 git@git.evennode.com/your-app-repository-here.git
Deploy app to EvenNode.
$ git push evennode master
For more information about using Python on EvenNode, see our documentation: