Federated blogging application, thanks to ActivityPub
Go to file
Bat f060fa08af Initial commit
With instance configuration
2018-04-22 14:35:37 +01:00
migrations Initial commit 2018-04-22 14:35:37 +01:00
src Initial commit 2018-04-22 14:35:37 +01:00
templates/instance Initial commit 2018-04-22 14:35:37 +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 Initial commit 2018-04-22 14:35:37 +01:00
Cargo.toml Initial commit 2018-04-22 14:35:37 +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