Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 985 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 985 Bytes

SOFTENG 206 - EscAIpe Room

To setup OpenAI's API

  • add in the root of the project (i.e., the same level where pom.xml is located) a file named apiproxy.config

  • put inside the credentials that you received from [email protected] (put the quotes "")

    email: "[email protected]"
    apiKey: "YOUR_KEY"
    

    these are your credentials to invoke the OpenAI GPT APIs

To setup codestyle's API

  • add in the root of the project (i.e., the same level where pom.xml is located) a file named codestyle.config

  • put inside the credentials that you received from [email protected] (put the quotes "")

    email: "[email protected]"
    accessToken: "YOUR_KEY"
    

these are your credentials to invoke GradeStyle

To run the game

./mvnw clean javafx:run

To debug the game

./mvnw clean javafx:run@debug then in VS Code "Run & Debug", then run "Debug JavaFX"

To run codestyle

./mvnw clean compile exec:java@style