Reconstruction of Norbert Rieger's DBTracks website based on what was available on the wayback machine.
The site is currently hosted at dbtracks.com, with dbtracks.pages.dev as a fallback.
First clone the repo.
git clone https://github.com/pgroenbaek/dbtracks-site.git
cd dbtracks-siteMake sure you have Node.js and npm installed on your system.
To install dependencies and run the site locally:
npm install
npm startThe site can now be accessed at http://localhost:8080
Make sure you have Docker installed on your system.
To build and run the docker image locally:
docker build -t dbtracks-site:latest .
docker run -p 8080:8080 dbtracks-site:latestThe site can now be accessed at http://localhost:8080
First, install and authenticate the Cloudflare Wrangler CLI:
npm install -g wrangler
wrangler loginNext, run the deployment script defined in package.json:
npm run deploy