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.git
Create a .env
file with KEY=value
as decribed in .config.js
npm run dev
npm run test
A Dockerfile is provided.
The build-and-run step is:
npm run build && npm run start
You 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