1
0
mirror of https://github.com/linkedin/oncall.git synced 2025-12-09 00:42:01 +02:00
Files
oncall/README.md

40 lines
373 B
Markdown
Raw Normal View History

2017-05-02 15:57:25 -07:00
Oncall
======
Initial setup
-------------
### Prerequisites
2017-05-02 15:57:25 -07:00
* Debian/Ubuntu - `apt-get install libldap2-dev`
### Install
2017-05-02 15:57:25 -07:00
```
python setup.py develop
2017-05-02 16:39:46 -07:00
pip install -r dev_requirements.txt
2017-05-02 15:57:25 -07:00
```
Setup mysql schema:
```
mysql -u root -p < ./db/schema.v0.sql
```
Setup app config by editing configs/config.yaml.
Run
---
```
make serve
```
Test
---
```
make test
```