A fun scratch-off lottery ticket game built with Kotlin, Spring Boot, and TypeScript. Scratch the gray area to reveal your prize!
brew tap homebrew/cask-versions
brew install --cask temurin17
brew install node
brew install gradle
java -version # Should show Java 17
node --version # Should show v20.11.1 or higher
npm --version # Should show 10.2.4 or higher
gradle --version # Should show 8.x or higher
git clone https://github.com/yourusername/blair-website.git
cd blair-website
gradle wrapper
cd src/main/resources/static
npm install
./gradlew build
./gradlew bootRun
http://localhost:8080
The TypeScript source files are located in src/main/resources/static/ts/
. To watch for changes during development:
cd src/main/resources/static
npm run watch
The Kotlin source files are located in src/main/kotlin/
. The application will automatically reload when you make changes to the Kotlin files.
brew tap heroku/brew && brew install heroku
heroku login
heroku create blairgao
heroku buildpacks:set heroku/java
git push heroku main
heroku open
blair-website/
├── src/
│ ├── main/
│ │ ├── kotlin/
│ │ │ └── com/
│ │ │ └── blairgao/
│ │ │ ├── Application.kt
│ │ │ ├── LotteryController.kt
│ │ │ └── Prize.kt
│ │ └── resources/
│ │ ├── static/
│ │ │ ├── ts/
│ │ │ │ └── scratch.ts
│ │ │ ├── css/
│ │ │ │ └── style.css
│ │ │ ├── package.json
│ │ │ └── tsconfig.json
│ │ └── templates/
│ │ └── index.html
│ └── test/
├── build.gradle.kts
└── README.md
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.