Plume/README.md
Bat f060fa08af Initial commit
With instance configuration
2018-04-22 14:35:37 +01:00

209 B

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