##// END OF EJS Templates
readme: doc update
ergo -
Show More
@@ -1,99 +1,105 b''
1 AppEnlight
1 AppEnlight
2 -----------
2 -----------
3
3
4 Automatic Installation
4 Automatic Installation
5 ======================
5 ======================
6
6
7 Use the ansible scripts in the `automation` repository to build complete instance of application
7 Use the ansible scripts in the `automation` repository to build complete instance of application
8 You can also use `packer` files in `automation/packer` to create whole VM's for KVM and VMWare.
8 You can also use `packer` files in `automation/packer` to create whole VM's for KVM and VMWare.
9
9
10 Manual Installation
10 Manual Installation
11 ===================
11 ===================
12
12
13 To run the app you need to have meet prerequsites:
13 To run the app you need to have meet prerequsites:
14
14
15 - python 3.5+
15 - python 3.5+
16 - running elasticsearch (2.3+/2.4 tested)
16 - running elasticsearch (2.3+/2.4 tested)
17 - running postgresql (9.5+ required)
17 - running postgresql (9.5+ required)
18 - running redis
18 - running redis
19
19
20 Install the app by performing
20 Install the app by performing
21
21
22 pip install -r requirements.txt
22 pip install -r requirements.txt
23
23
24 python setup.py develop
24 python setup.py develop
25
25
26 Install the appenlight uptime plugin (`ae_uptime_ce` package from `appenlight-uptime-ce` repository).
26 Install the appenlight uptime plugin (`ae_uptime_ce` package from `appenlight-uptime-ce` repository).
27
27
28 After installing the application you need to perform following steps:
28 After installing the application you need to perform following steps:
29
29
30 1. (optional) generate production.ini (or use a copy of development.ini)
30 1. (optional) generate production.ini (or use a copy of development.ini)
31
31
32
32
33 appenlight-make-config production.ini
33 appenlight-make-config production.ini
34
34
35 2. Setup database structure:
35 2. Setup database structure:
36
36
37
37
38 appenlight-migratedb -c FILENAME.ini
38 appenlight-migratedb -c FILENAME.ini
39
39
40 3. To configure elasticsearch:
40 3. To configure elasticsearch:
41
41
42
42
43 appenlight-reindex-elasticsearch -t all -c FILENAME.ini
43 appenlight-reindex-elasticsearch -t all -c FILENAME.ini
44
44
45 4. Create base database objects
45 4. Create base database objects
46
46
47 (run this command with help flag to see how to create administrator user)
47 (run this command with help flag to see how to create administrator user)
48
48
49
49
50 appenlight-initializedb -c FILENAME.ini
50 appenlight-initializedb -c FILENAME.ini
51
51
52 5. Generate static assets
52 5. Generate static assets
53
53
54
54
55 appenlight-static -c FILENAME.ini
55 appenlight-static -c FILENAME.ini
56
56
57 Running application
57 Running application
58 ===================
58 ===================
59
59
60 To run the main app:
60 To run the main app:
61
61
62 pserve development.ini
62 pserve development.ini
63
63
64 To run celery workers:
64 To run celery workers:
65
65
66 celery worker -A appenlight.celery -Q "reports,logs,metrics,default" --ini FILENAME.ini
66 celery worker -A appenlight.celery -Q "reports,logs,metrics,default" --ini FILENAME.ini
67
67
68 To run celery beat:
68 To run celery beat:
69
69
70 celery beat -A appenlight.celery --ini FILENAME.ini
70 celery beat -A appenlight.celery --ini FILENAME.ini
71
71
72 To run appenlight's uptime plugin:
72 To run appenlight's uptime plugin:
73
73
74 appenlight-uptime-monitor -c FILENAME.ini
74 appenlight-uptime-monitor -c FILENAME.ini
75
75
76 Real-time Notifications
76 Real-time Notifications
77 =======================
77 =======================
78
78
79 You should also run the `channelstream websocket server for real-time notifications
79 You should also run the `channelstream websocket server for real-time notifications
80
80
81 channelstream -i filename.ini
81 channelstream -i filename.ini
82
82
83 Testing
83 Testing
84 =======
84 =======
85
85
86 To run test suite:
86 To run test suite:
87
87
88 py.test appenlight/tests/tests.py --cov appenlight (this looks for testing.ini in repo root)
88 py.test appenlight/tests/tests.py --cov appenlight (this looks for testing.ini in repo root)
89
89
90
90
91 Development
91 Development
92 ===========
92 ===========
93
93
94 To develop appenlight frontend:
94 To develop appenlight frontend:
95
95
96 cd frontend
96 cd frontend
97 npm install
97 npm install
98 bower install
98 bower install
99 grunt watch
99 grunt watch
100
101
102 Tagging release
103 ===============
104
105 bumpversion --current-version 1.1.1 minor --verbose --tag --commit --dry-run
General Comments 0
You need to be logged in to leave comments. Login now