This is a React frontend application for managing hackathons. It allows a hackathon manager to create a webpage with details about the hackathon, which is listed on the app's dashboard. It also allows the manager to set up registration questions. Regular users can log in to the website and sign up for hackathons by filling out the registration forms.
If all you want to do is start running the application, go to Hackapp.
If you want to be able to work on the frontend and iteratively test (i.e., you do not want to restart a docker container for every commit), perform the following:
- Pull down the backend using
git clone https://github.com/evscott/hackapp-api.git
. cd
into the backend directory and rundocker-compose up --build
to run the server onhttp://localhost:8080
. You should be able to go tohttp://localhost:8080/api
in your browser and see the API calls used by the application.- Pull down this frontend repository using
git clone https://github.com/evscott/hackapp-client.git
. cd
into the frontend directory and runnpm start
, which starts the app in development mode.- Go to
http://localhost:9090
to use the app! The page will reload if you make edits. SInce it will run in development mode, the console has all the Redux state changes.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify