Getting Started
We outline here how you get started on developing and deploying our applications. Please follow the steps as outlines. You should find all the needed resources in the GitHub Repository
Last updated
Was this helpful?
We outline here how you get started on developing and deploying our applications. Please follow the steps as outlines. You should find all the needed resources in the GitHub Repository
Last updated
Was this helpful?
First, make sure to install git and docker on your local machine.
If you do not have git installed, check out
If you do not have docker installed, have a look here:
For the system to work locally, you need the corresponding infrastructure to run virtually on your system for our backend to connect to the necessary services.
Now we are going to do just that. Pull the newest version of infrastructure to your local machine
Then in your console, cd into the corresponding directory, and start the docker containers
We suggest checking up on the running containers if everything is working as expected
Once the infrastructure environment is running locally, we can start the backend server.
As before, pull the newest version of our backend
Then you can start the server by running the AccessApplication
file. You find it in
. If you are using IntelliJ IDEA, simply right click this file and press \Course-Service\src\main\java\ch\uzh\ifi\access\AccessApplication.javaRun AccessApplication
.
As before, pull the respective respository in your console
Cd into the directory and start the application with
Your default webbrowser should open the application automatically. If not, simply open a webbrowser of your choice and navigate to localhost:3000
. As shown by the terminal output, you can also access keycloack by navigating to localhost:9999
.
You are all set now to start coding or using the app locally ;)