- New cron job in cluster - Handle presence and other concerns - Toggle in app to disable email notifications - Handles other edge cases such as cooldown period - Simple html email with simple message Closes #117
35 lines
492 B
Markdown
35 lines
492 B
Markdown
# Orion
|
|
|
|
API server and worker services for llink.
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
# Deploy all services
|
|
make deploy-dev
|
|
make deploy-prod
|
|
|
|
# Deploy a single service
|
|
make deploy-dev MODULE=orion
|
|
make deploy-dev MODULE=worker
|
|
make deploy-dev MODULE=pusher
|
|
make deploy-dev MODULE=emailnotifierjob
|
|
```
|
|
|
|
## Migrations
|
|
|
|
```bash
|
|
make migrate-dev
|
|
make migrate-prod
|
|
|
|
# Create a new migration
|
|
make create-migration ARG="create_users_table"
|
|
```
|
|
|
|
## Database Access
|
|
|
|
```bash
|
|
make dev-database
|
|
make prod-database
|
|
```
|