mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 16:01:01 +00:00
Federated blogging application, thanks to ActivityPub
migrations | ||
src | ||
templates/instance | ||
.env | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
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