##// END OF EJS Templates
validation: remove 0.4 report validators
validation: remove 0.4 report validators

File last commit:

r32:dbf3c9d6
r39:277cf28b
Show More
README.md
43 lines | 950 B | text/x-minidsrc | MarkdownLexer
project: initial commit
r0 # appenlight README
readme: slightly updated the readme
r32 To run the app you need to have meet prerequsites:
project: initial commit
r0
readme: slightly updated the readme
r32 - running elasticsearch (2.3+ tested)
- running postgresql (9.5+ required)
project: initial commit
r0 - running redis
# Setup basics
Set up the basic application database schema:
appenlight_initialize_db config.ini
Set up basic elasticsearch schema:
appenlight-reindex-elasticsearch -c config.ini -t all
readme: slightly updated the readme
r32 Installed the appenlight uptime plugin
project: initial commit
r0
# Running
To run the application itself:
pserve --reload development.ini
To run celery queue processing:
celery worker -A appenlight.celery -Q "reports,logs,metrics,default" --ini=development.ini
readme: slightly updated the readme
r32 You should also run the channelstream websocket server for real-time notifications
channelstream -i filename.ini
project: initial commit
r0
# Testing
To run test suite:
py.test appenlight/tests/tests.py --cov appenlight (this looks for testing.ini in repo root)
WARNING!!!
Some tests will insert data into elasticsearch or redis based on testing.ini