This is an app used for secret santa, deployed on heroku.
# To deploy a new app version
git push heroku master
# For local development
heroku local web
# To edit the database after deploy
heroku pg:psql
# To create the table
create table linkings (id integer, name text, link text, read boolean);
# To add a new row
insert into linkings values (1, 'Lorenzo', 'Teresa', false);
# For local development
export DATABASE_URL=postgres://<user>:<role_pwd>@localhost