AWS Python Environment (virtualenv, packages, etc)
Cookbooks from Berkshelf:
python
- python_cookbook needs python from berkshelf
TODO: List you cookbook attributes here.
e.g.
Key | Type | Description | Default |
---|---|---|---|
['python_cookbook']['bacon'] | Boolean | whether to include bacon | true |
Custom JSON to configure (stack settings - Custom JSON):
{
"deploy": {
"fshare": {
"user": "user_x",
"group": "group_x",
"deploy_to": "/var/www/fshare",
"directory_mode": "0755",
"venv_path": "var/.env",
"requirements": "requirements.txt",
"pip_packages": [
"Django==1.6.5",
"Pillow==2.4.0",
"South==0.8.4"
],
"scm": {
"scm_type": "git",
"repository": "https://github.com/zxwild/fshare.git",
"revision": "master",
"user": "",
"password": ""
},
"django_database": {
"engine": "sqlite3",
"name": "unique_sqlite_name.sqlite3",
"user": "",
"password": "",
"host": "",
"port": ""
}
}
}
}