A user interface for game server and visualization of the game state. Developed for the robotics competition Robo liga FRI.
To set up the project follow the instructions in the following SETUP README.
To configure game parameters change the values in config.json.
// note the following parameters
name: "Robo liga FRI 2023: Rudnik", // name on the website's landing page
robot_time: 25, // max fuel time of the robot
field_key: "game_field" // needs to match the ID of the field that defines the entire arena
To configure the base url of the server update the nuxt.config.ts.
runtimeConfig: {
public: {
baseApiUrl: 'http://localhost:8088' // change this value
}
}
- Matej Horvat