1
0
Fork
You've already forked Lox
0
No description
  • Kotlin 97.1%
  • Nix 2.9%
2026年07月02日 19:40:53 +08:00
app feat: lexical scoping 2026年07月02日 19:40:53 +08:00
gradle feat: init scanner 2026年03月18日 12:24:50 +08:00
.envrc chore: setup nix dev env 2026年05月10日 15:05:23 +08:00
.gitignore chore: setup nix dev env 2026年05月10日 15:05:23 +08:00
build.gradle.kts feat: init scanner 2026年03月18日 12:24:50 +08:00
flake.lock chore: setup nix dev env 2026年05月10日 15:05:23 +08:00
flake.nix chore: setup nix dev env 2026年05月10日 15:05:23 +08:00
gradle.properties feat: init scanner 2026年03月18日 12:24:50 +08:00
gradlew feat: init scanner 2026年03月18日 12:24:50 +08:00
gradlew.bat feat: init scanner 2026年03月18日 12:24:50 +08:00
README.md feat: init scanner 2026年03月18日 12:24:50 +08:00
settings.gradle.kts feat: init scanner 2026年03月18日 12:24:50 +08:00

This is a Kotlin Multiplatform project targeting Server.

  • /app is for the Ktor server application.

Build and Run Server

To build and run the development version of the server, use the run configuration from the run widget in your IDE’s toolbar or run it directly from the terminal:

  • on macOS/Linux
    ./gradlew :app:run
    
  • on Windows
    .\gradlew.bat :app:run
    

Learn more about Kotlin Multiplatform...