summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/deploy.org
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2016-09-26 16:36:11 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2016-09-26 16:36:11 +0200
commitff30b14a212f38cf59084d30e9f13f9f92d2be3b (patch)
treecbe10ef00ef2be5650bedb5b81e24bd3b205f52c /tools/pharos-dashboard/deploy.org
parent3ebfdcbcc91202482edb3f63fedde48646728fcd (diff)
Restructure dashboard project for docker deploying
Change-Id: I13cad51270504ee4bed8558598a8891af58a26ab Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/deploy.org')
-rw-r--r--tools/pharos-dashboard/deploy.org45
1 files changed, 0 insertions, 45 deletions
diff --git a/tools/pharos-dashboard/deploy.org b/tools/pharos-dashboard/deploy.org
deleted file mode 100644
index b8399215..00000000
--- a/tools/pharos-dashboard/deploy.org
+++ /dev/null
@@ -1,45 +0,0 @@
-* Database
-
-** Setup
-- sudo -u postgres psql
-- postgres=# CREATE DATABASE pharos_dashboard
-- postgres=# CREATE USER opnfv WITH PASSWORD 'opnfvopnfv'
-- postgres# createuser --interactive
-- postgres# ALTER ROLE opnfv SET client_encoding TO 'utf8';
-- postgres# ALTER ROLE opnfv SET default_transaction_isolation TO 'read committed';
-- postgres# ALTER ROLE opnfv SET timezone TO 'UTC';
-- postgres# GRANT ALL PRIVILEGES ON DATABASE pharos_dashboard TO opnfv;
-
-** Dump data
-
-- log out all users, stop server
-- (venv) # python manage.py dumpdata > dashboard/fixtures/<dump_name>.json
-
-** Load dump
-
-- setup clean database, run migrate
-- (venv) # python manage.py loaddata <dump_name>
-
-* Django
-
-** Virtualenv setup
-
-- # virtualenv venv
-- # source venv/bin/activate
-- (venv) # pip install -r requirements.txt
-
-** initializing or after change in models.py
-
-- (venv) # python manage.py makemigrations
-- (venv) # python manage.py migrate
-
-** Development
-
-- (venv) # python manage.py runserver
-- (venv) # python manage.py shell
-
-* Dependencies
-
-Javascript / CSS dependencies are managed with bower. To install them, you have to install bower, switch directory to the dashboard/static folder and run
-# bower install
-Bower will download and install the right versions of all the static files.