https://github.com/markslorach/codecrush-capstone
Quiz application with daily coding challenges. Group capstone project at CodeClan. Built with Next.js, Java, Spring Boot and PostgreSQL.
https://github.com/markslorach/codecrush-capstone
codeclan java javascript next-js postgresql spring-boot
Last synced: 3 months ago
JSON representation
Quiz application with daily coding challenges. Group capstone project at CodeClan. Built with Next.js, Java, Spring Boot and PostgreSQL.
- Host: GitHub
- URL: https://github.com/markslorach/codecrush-capstone
- Owner: markslorach
- Created: 2023-08-27T15:29:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T08:44:03.000Z (about 2 years ago)
- Last Synced: 2025-07-08T05:48:10.907Z (12 months ago)
- Topics: codeclan, java, javascript, next-js, postgresql, spring-boot
- Language: JavaScript
- Homepage:
- Size: 4.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodeCrush
Quiz application with daily coding challenges. Answer questions correctly to build a streak, earn points and rank up on the leaderboard.
### Tech Stack
- Next.js
- Tailwind
- Java
- Spring
- PostgreSQL
- Firebase Auth
### Prerequisites
* Next.js 13
* Java Development Kit (JDK) 11
* PostgreSQL database
* IntelliJ IDEA
### Getting Started
1. Install Dependencies
* Navigate to the `codecrush_frontend directory`
* Run the following command: `npm install`
2. Create PostgreSQL Database
* Create a PostgreSQL database named `codecrush`
```
dropdb money_tracker
psql -d money_tracker -f db/money_tracker.sql
```
* Ensure the database is accessible from both your frontend and backend applications
3. Setup Backend Application
* Open the `codecrush_backend directory` in IntelliJ IDEA
* Run the CapstoneApplication.java file to start the backend server
* The PostgreSQL database can be viewed at `localhost:8082`
4. Run Frontend Application
* Navigate back to the root directory of the project
* Run the following command: `npm run dev`
* This will start the Next.js development server
* Open your web browser and navigate to `http://localhost:3000` to access the application
### Screenshots