This application is a simple side-project created to learn a bit more about Next.js and TypeScript.
git clone git@github.com:lovethebomb/data-tiles.gitCreate a .env file with KEY=value as decribed in .config.js
npm run devnpm run testA Dockerfile is provided.
The build-and-run step is:
npm run build && npm run startYou can provide the .env file through a Docker volume and override the port envvar if needed.
docker run -v -e "PORT=3000" /path/to/.env:/app/.env data-tiles