Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samfundev/ktane-bombs


https://github.com/samfundev/ktane-bombs

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# KTANE-Bombs

A website for tracking KTANE challenge bombs.

## bombdata

`bombdata` is a scrapper that uses HTML files from the challenge bomb spreadsheets so that that data can be imported.

## Developing

Install dependencies with `npm install` (or `pnpm install` or `yarn`).

Make a copy of the `.env.template` file and rename it to `.env`.

Inside that file set `DATABASE_URL` to point to your Postgres DB.

Run `npx prisma generate` to generate the prisma client.

Run `npx prisma migrate dev` to set up the database.

To start a development server:
```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```