Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samfundev/ktane-bombs
https://github.com/samfundev/ktane-bombs
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/samfundev/ktane-bombs
- Owner: samfundev
- Created: 2021-05-22T18:09:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T12:38:05.000Z (2 months ago)
- Last Synced: 2024-10-20T05:06:23.823Z (2 months ago)
- Language: Svelte
- Size: 6.18 MB
- Stars: 0
- Watchers: 3
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
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
```