Dolphin are apparently curious animals, so are we at Hulse, and we need some fresh data! We'll be collecting data about personal computer activity, and more specifically data about CPU, Disk, Memory, and Energy consumptions.
Once you're connected to the postgres shell, run the following commands:
CREATE DATABASE "dolphin";
CREATE USER postgres WITH PASSWORD 'postgres';
ALTER ROLE postgres SET client_encoding TO 'utf8';
ALTER ROLE postgres SET default_transaction_isolation TO 'read committed';
ALTER ROLE postgres SET timezone TO 'UTC';
GRANT ALL PRIVILEGES ON DATABASE dolphin TO postgres;
Find more info about setting postgresql with django here.