Dockerized (postgres + nginx + golang + react) starter kit
Only implements basic user signup, session management, and a toy post
type to demonstrate basic CRUD. PNGR is not a CMS.
- Hot-reload, front and back, including a test-runner for golang changes
- JSON Web-Token cookies with automatic refresh: ready for horizontal scaling
- Uses multi-stage builds for small production images
- Feature development is up to you!
- Install docker && docker-compose
sudo docker-compose up
- Visit
https://localhost
(note https) - Approve the self-signed cert
- Make changes to either golang or react code, and enjoy hot-reload goodness!
Preview of the app:
Maybe your postgres went sideways from a wonky migration and you don't want to muck with fixing it.
sudo docker-compose down -v && sudo docker-compose up --build --force-recreate
Warning: Run in production at your own risk - this code is not security hardened!
You should install postgresql on the host.
Then you can use docker-compose.prod.yml
to build lean images to use in production.
Don't forget to copy .env.example -> .env
and setup your secrets/passwords.
Some tips for working with your postgres docker instance
Migrations are run using go-migrate.
I put together little bash scripts to help you get stuff done.
sudo postgres/new-migration.sh my_migration_name
will create a template for the next migration.sudo postgres/run-migrations.sh
will execute any new migrations
You can do more advanced migrate commands
sudo docker-compose exec postgres psql -U postgres
Remember to use \q
to exit.
Nginx is simply used to route requests to the front-end and back-end based on path. It also terminates SSL so that we don't have to deal with certs in our app layer.
Almost-vanilla golang api:
- Makes use of go modules for dependencies
- jwt-go for JSON Web Tokens
- sqlx for better postgres interface
The basic building blocks of the front-end are:
- Create React App (unejected!)
- React Router
- Unstated for state management
- Semantic UI React for component library