SM is yet another web interface to manage a dedicated Assetto Corsa server. This project differs from others in which it uses presets to create events.
Use the pre-built binaries provided in the release tab.
The following instructions will build and run the application using the Dockerfile
- Clone the repository locally
- cd in the directory and build the Dockerfile
- Run the application in Docker
- Acceess the Web UI using http://localhost:3030
git clone https://github.com/8bitmcu/ServerManager.git
cd ServerManager
docker build . --tag 'servermanager'
docker run --network=host 'servermanager' -v /path/to/corsa:/corsa
- Clone the repository locally
- cd into the directory and run
docker compose up
- Access the Web UI using https://localhost:443, http://localhost:80 or http://localhost:3030
Use the pre-built binaries provided in the release tab.
The project depends on tailwindcss to generate /css/main.css
, and go-assets-builder to generate assets.go
. npm is required for tailwindcss.
Run the following to install the dependencies
make deps
It is best to use the included Makefile to generate a build
make build
The makefile provides an easy to use method to create a build for Windows
make buildwin