Plume, haskal edition
https://blog.lain.faith
f060fa08af
With instance configuration |
||
---|---|---|
migrations | ||
src | ||
templates/instance | ||
.env | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
README.md |
README.md
Plume
Setup the database
You'll need Postgres.
sudo su postgres
psql
CREATE DATABASE plume;
CREATE USER plume WITH PASSWORD 'plume';
GRANT ALL PRIVILEGES ON DATABASE plume to plume;
\q
exit