this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 14 lines 274 B view raw view rendered
1# SENAC Access Control 2 3## Enviroment Variables 4 5```sh 6# DATABASE 7export POSTGRES_USER="user" 8export POSTGRES_PASSWORD="password" 9export POSTGRES_DB="database" 10 11# SERVER 12export SECRET_KEY="wibble" 13export DATABASE_URL="postgresql://user:password@localhost:5432/database" 14```