https://github.com/knighthacks/admin-tool-2023
https://github.com/knighthacks/admin-tool-2023
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/knighthacks/admin-tool-2023
- Owner: KnightHacks
- Created: 2023-03-25T02:24:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-17T02:35:55.000Z (almost 3 years ago)
- Last Synced: 2025-02-27T04:50:11.271Z (over 1 year ago)
- Language: TypeScript
- Size: 464 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2023 KnightHacks Admin Tool
This is the new repo for KnightHacks' administration tool built in Next.js with the app directory. It is to be used by our hackathon organizers to manage the data of all hackathons hosted by KnightHacks.
## Installation
```shell
git clone git@github.com:KnightHacks/admin-tool-2023.git
cd admin-tool-2023
npm i
```
Before going any further, you will need to add an .env.local file at the root of your directory containing the following contents:
```env
API_ENDPOINT= # https://api.knighthacks.org/ or http://localhost:4000/ if hosted locally
```
## Getting Started
To run a live development server, run the following script in a terminal:
```shell
npm run dev
```
This will host the admin tool locally at by default. As you make updates to the code, they should be reflected automatically on the page
Learn more about the Next.js app directory here