Installing RAMS locally

DB init:

$ sudo -u postgres -i
$ initdb -D '/var/lib/postgres/data'
$ systemctl start postgresql
$ createuser --interactive
$ psql
> \password
> \q
$ createdb db_name -O db_user

development.ini:

path = "/uber"
#at_the_con = True
kiosk_cc_enabled = True
#[secret]
#sqlalchemy_url = "postgresql://db_user:db_password@localhost:5432/db_name"

[dept_head_checklist]
[[creating_shifts]]
deadline = "1970-01-01"
description = "hi"

[dates]
printed_badge_deadline = "1970-01-01"
supporter_badge_deadline = "1970-01-01"