20 lines
331 B
Markdown
20 lines
331 B
Markdown
|
# Kredens
|
||
|
|
||
|
Where I keep my spoons.
|
||
|
|
||
|
## Development
|
||
|
|
||
|
Create a .env file:
|
||
|
```sh
|
||
|
DATABASE_PASSWORD=TOTALMESSREPLACE
|
||
|
DATABASE_URL=postgres://postgres:${DATABASE_PASSWORD}@host.docker.internal/kredens
|
||
|
```
|
||
|
|
||
|
Then, to start the thing:
|
||
|
|
||
|
```sh
|
||
|
% docker compose up -d
|
||
|
```
|
||
|
|
||
|
The entire thing comes with a dev container that should mostly work.
|