RBangel / weneedtowatch

0 stars 1 forks source link

Add sample prod secret file #2

Closed McPolemic closed 6 years ago

McPolemic commented 6 years ago

Fixes #1

Note: This sets up the database properly, but it still needs to create the database somehow. I created it manually using the following:

docker exec -it weneedtowatch_postgres_1 bash

root@349e238d61f8:/# psql --username postgres
psql (10.0)
Type "help" for help.

postgres=# create database weneedtowatch;
CREATE DATABASE
postgres=# \q
root@349e238d61f8:/# exit

This could probably use a more Elixir-y answer. I'll file another issue.

RBangel commented 6 years ago

Looks good. Thank you much! For the create, see comments on Issue #3