Find a file
Renovate 3092f4a688
All checks were successful
CI / prettier (pull_request) Successful in 24s
CI / eslint (pull_request) Successful in 42s
CI / test-build (pull_request) Successful in 51s
CI / Checkstyle Main (pull_request) Successful in 2m7s
chore(deps): update all non-major dependencies
2025-03-12 19:02:41 +00:00
.gitea/workflows Merge pull request 'chore(deps): update https://github.com/actions/cache action to v4' (#67) from renovate/https-github.com-actions-cache-4.x into main 2025-03-12 18:01:55 +00:00
backend chore(deps): update all non-major dependencies 2025-03-12 19:02:41 +00:00
docker chore(deps): update all non-major dependencies 2025-03-12 19:02:41 +00:00
frontend chore(deps): update all non-major dependencies 2025-03-12 19:02:41 +00:00
.gitignore refactor: update .gitignore and optimize Angular config (!7) 2025-02-05 10:37:21 +00:00
CLAUDE.md docs: add Claude Assistant Guide to documentation 2025-03-12 14:07:53 +01:00
README.md docs: update README for Casino Gaming Platform details 2025-03-12 14:04:10 +01:00
release.config.cjs Update release.config.cjs 2025-03-12 12:00:22 +00:00
renovate.json chore(deps): add renovate.json 2025-03-12 13:01:23 +00:00

Casino Gaming Platform

An online gaming platform offering various casino-style games with virtual currency support. This project features a modern tech stack with Angular frontend, Spring Boot backend, and complete user authentication.

Casino Gaming Platform

Features

  • Multiple casino games: Poker, Blackjack, Slots, Plinko, Liars Dice, and Lootboxes
  • User authentication and account management via Keycloak
  • Virtual currency deposit system using Stripe payments
  • Transaction history tracking
  • Responsive modern UI built with Angular and TailwindCSS

Tech Stack

Frontend

  • Angular 18
  • TailwindCSS
  • Keycloak integration
  • Stripe payment integration

Backend

  • Spring Boot (Java)
  • PostgreSQL database
  • Keycloak for authentication/authorization
  • Stripe API for payment processing

Infrastructure

  • Docker containerization for all services

Getting Started

Prerequisites

Setting Up the Environment

  1. Clone the repository
git clone <repository-url>
cd casino
  1. Start the Docker services
cd docker
docker-compose up -d

This will start:

  • PostgreSQL database
  • Keycloak authentication server

Running the Backend

  1. Navigate to the backend directory
cd backend
  1. Start the Spring Boot application
./gradlew bootRun

The backend will be available at:

Running the Frontend

  1. Navigate to the frontend directory
cd frontend
  1. Install dependencies
npm install
  1. Start the development server
npm run dev

The frontend will be available at http://localhost:4200

Database Management

Postgres Management

Database cleanup (if needed)

cd docker
docker-compose down
docker volume rm local_lf8_starter_postgres_data
docker-compose up -d

Setting up IntelliJ Database View

  1. Run the Docker container with PostgreSQL database
  2. Open application.properties in the resources folder and copy the database URL
  3. Open the Database tab in IntelliJ
  4. Click on the database icon with key in the Database toolbar
  5. Click the plus sign and select "Datasource from URL"
  6. Paste the DB URL and select PostgreSQL driver, confirm with OK
  7. Enter username lf8_starter and password secret
  8. In the Schemas tab, uncheck all options and only check lf8_starter_db and public

Authentication

The application uses Keycloak for authentication. To get a bearer token for API testing:

  1. Open requests/getBearerToken.http
  2. Click the green arrow next to the request
  3. Copy the access_token from the response

Development Guidelines

Commit Message Format

We follow semantic commit messages to maintain clear project history.

Format: <type>(<scope>): <subject>

Where <type> is one of:

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation changes
  • style: Formatting, missing semicolons, etc; no code change
  • refactor: Code refactoring
  • test: Adding or refactoring tests
  • chore: Updating build tasks, etc; no production code change

Examples:

feat: add user balance display
fix(auth): resolve token expiration issue
docs: update API documentation

References:

License

[License information here]