A simple site for registration who is going to play squash.
Run a Docker container with postgres:
docker run --name postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=cibersquash -p 5432:5432 -d postgres:latestIf you already have a container running, you can add a new database with the following command:
docker exec -it postgres psql -U postgres -c "CREATE DATABASE cibersquash"Then install Ruby-2.5.1 and install Gem's with `bundle install'.
Start the app with foreman start.