Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knighthacks/hackathon-2022
Knight Hacks Fall 2022 Hackathon Registration Site
https://github.com/knighthacks/hackathon-2022
Last synced: 6 days ago
JSON representation
Knight Hacks Fall 2022 Hackathon Registration Site
- Host: GitHub
- URL: https://github.com/knighthacks/hackathon-2022
- Owner: KnightHacks
- Created: 2022-07-18T20:57:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-02T00:55:58.000Z (almost 2 years ago)
- Last Synced: 2024-05-29T17:14:27.953Z (6 months ago)
- Language: JavaScript
- Size: 9.57 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
2022 Knight Hacks Hackathon SiteThis repository is the home for the frontend code of the 2022 Knight Hacks Hackathon Website.
## Installation
```shell
https://github.com/KnightHacks/hackathon-2022.git
cd hackathon-2022
npm install
```## Setup Environment Variables
Create a .env file declaring the REACT_APP_API_ENDPOINT and REACT_APP_OAUTH_AUTH_REDIRECT variables.
REACT_APP_API_ENDPOINT is the url pointing to the backend you are using.
REACT_APP_OAUTH_AUTH_REDIRECT is the url that your application should return to after completing Github oAuth.
Example:
.env
```
REACT_APP_API_ENDPOINT=http://localhost:4000
REACT_APP_OAUTH_AUTH_REDIRECT=http://localhost:3000/auth_redirect
```## Getting Started
To run a live development server, run the following in a terminal:
```shell
npm run start
```This will host the website at http://localhost:3000. As you make updates to the
code, the development server will automatically reload the page.