See it live ! http://twitter-writes-hamlet/
This is a rewrite of twitter-writes-hamlet.
The codebase is now TypeScript, the database is MongoDB and it's all running in Docker !
Optionally, regenerate the seed files (seed files are in the repo already):
npm run build
npm run generate-seed
Launch database:
docker-compose up -d mongo
Seed database:
docker-compose up mongo-seed
Database is now running in detached mode, all data and indexes are loaded.
docker-compose up -d app
docker-compose up --build app-dev