This is a Python engine for developing python apps on Nanobox.
To use the Python engine, specify python
as your engine
in your boxfile.yml
run.config:
engine: python
This engine exposes configuration options through the boxfile.yml, a yaml config file used to provision and configure your app's infrastructure when using Nanobox.
The following setting allows you to define your Python runtime environment.
Specifies which Python runtime and version to use. The following runtimes are available:
run.config:
engine.config:
runtime: python-3.5
Allows for a custom user-defined pip install command.
note: The custom pip install command should always include -I
to ensure the binaries get copied on each build.
run.config:
engine.config:
pip_install: 'pip install --index-url https://my.custom.index -r requirements/private.txt -I'
This is a Python engine provided by Nanobox. If you need help with this engine, you can reach out to us in the #nanobox IRC channel. If you are running into an issue with the engine, feel free to create a new issue on this project.