Skip to content

lovethebomb/data-tiles

Repository files navigation

Data Tiles

Greenkeeper badge Build Status

This application is a simple side-project created to learn a bit more about Next.js and TypeScript.

Usage

git clone git@github.com:lovethebomb/data-tiles.git

Create a .env file with KEY=value as decribed in .config.js

Development

npm run dev

Testing

npm run test

Production

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