This commit is contained in:
Ralfs 2021-04-13 13:16:41 +03:00
parent 42f333b57e
commit 914234ebbc
2 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@ -13,7 +13,6 @@
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local

27
README.md Normal file
View File

@ -0,0 +1,27 @@
# Mango Alerts Server
Backend logic for the mango alerts provider
## Usage
Run ```yarn``` to install dependencies
```bash
yarn
```
An example ```.env``` file -
```
DB_USER=<DB_USER>
DB_PASS=<DB_PASS>
DB_HOSTS=<DB_HOST>
DB=<DB>
DB_OPTIONS=<DB_OPTIONS>
PORT=3010
TWILIO_ACCOUNT_SID=<TWILIO_ACCOUNT_SID>
TWILIO_AUTH_TOKEN=<TWILIO_AUTH_TOKEN>
TWILIO_PHONE_NUMBER=<TWILIO_PHONE_NUMBER>
MAIL_USER=<MAIL_USER>
MAIL_PASS=<MAIL_PASS>
TG_TOKEN=<TG_TOKEN>
```