Federated blogging application, thanks to ActivityPub
Go to file
2018-04-22 19:17:40 +01:00
migrations User creation 2018-04-22 19:13:12 +01:00
src Implement models::instance::Instance.has_admin 2018-04-22 19:17:40 +01:00
templates User creation 2018-04-22 19:13:12 +01:00
.env Initial commit 2018-04-22 14:35:37 +01:00
.gitignore Initial commit 2018-04-22 14:35:37 +01:00
Cargo.lock User creation 2018-04-22 19:13:12 +01:00
Cargo.toml User creation 2018-04-22 19:13:12 +01:00
README.md Initial commit 2018-04-22 14:35:37 +01:00

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