2023-08-15 17:43:53 +00:00
|
|
|
# Nerdcult API
|
|
|
|
This repo contains the source and documentation of the nerdcult api.
|
|
|
|
|
2023-08-16 16:05:54 +00:00
|
|
|
## Running
|
|
|
|
You can run the server with the following command:
|
|
|
|
```
|
2023-08-17 19:11:14 +00:00
|
|
|
export DATABASE_URL=postgres://user:password@host/database
|
2023-08-17 13:27:05 +00:00
|
|
|
export SMTP_HOST_URL=smtp.yourmailserver.tld
|
|
|
|
export SMTP_USER=accounts@yourdomain.tld
|
|
|
|
export SMTP_PASSWORD=password
|
2023-08-16 16:05:54 +00:00
|
|
|
./nerdcult_api
|
2023-08-18 14:41:56 +00:00
|
|
|
```
|