Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 409 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 409 Bytes

gorilla/sessions good practices

Creating the TLS certificates:

openssl req -x509 -nodes -newkey rsa:2048 -keyout private.key -out certificate.crt -days 365 -config openssl.cnf -extensions certauth

Running the application stack:

docker-compose up app postgres mailpit

Initializing database:

docker-compose up migrate-up

Destroy database:

docker-compose up migrate-drop