A chat room application.
demo.mov
- Docker
- Go
- Node
Set the correct permissions for the PGAdmin configuration files.
chmod -R 600 ./docker/pg_config
- Spin up PostgreSQL database container
- Run migration scripts against database
- Spin up accompanying PGAdmin container
- Spin up built image of the server
make start
- Spin up PostgreSQL database container
- Run migration scripts against database
- Spin up accompanying PGAdmin container
make dev
- Run the server locally
make server
Run the migration scripts against the PostgreSQL database specified.
POSTGRES_URL="<postgres-uri-here>" make migrate
Stops any of the services spun up by running make start
or make dev
make stop
Delete persisted volumes for PostgreSQL and PGAdmin containers.
make clean