Update README.md

This commit is contained in:
Marc Aymerich 2015-05-01 20:15:35 +02:00
parent 22930f8c5c
commit 1367d9d545
1 changed files with 17 additions and 16 deletions

View File

@ -29,6 +29,23 @@ However, Orchestra also provides glue, tools and patterns that you may find very
![](docs/images/index-screenshot.png)
Fast Deployment Setup
---------------------
To only run the Python interface follow these steps:
```bash
python3 -menv env-django-orchestra
source env-django-orchestra/bin/activate
echo $HOME/django-orchestra/ | sudo tee env-django-orchestra/lib/python3*/site-packages/orchestra.pth
pip3 install -r $HOME/django-orchestra/requirements.txt
django-admin.py startproject panel --template="$HOME/django-orchestra/orchestra/conf/project_template"
python3 panel/manage.py migrate accounts
python3 panel/manage.py migrate
python3 panel/manage.py runserver
```
None of the services will work but you can see the web interface on http://localhost:8000/admin
Development and Testing Setup
-----------------------------
@ -75,22 +92,6 @@ If you are planing to do some development or perhaps just checking out this proj
sudo ~orchestra/django-orchestra/scripts/container/deploy.sh
```
Fast Deployment Setup
---------------------
To only run the Python interface follow these steps:
```bash
python3 -menv env-django-orchestra
source env-django-orchestra/bin/activate
echo $HOME/django-orchestra/ | sudo tee env-django-orchestra/lib/python3*/site-packages/orchestra.pth
pip3 install -r $HOME/django-orchestra/requirements.txt
django-admin.py startproject panel --template="$HOME/django-orchestra/orchestra/conf/project_template"
python3 panel/manage.py migrate accounts
python3 panel/manage.py migrate
python3 panel/manage.py runserver
```
None of the services will work but you can see the web interface on http://localhost:8000/admin
License
-------