accweb

所属分类:Web服务器
开发工具:Vue
文件大小:0KB
下载次数:0
上传日期:2023-09-26 03:39:44
上 传 者sh-1993
说明:  通过Web界面的Assetto Corsa Competizione服务器管理工具。,
(Assetto Corsa Competizione Server Management Tool via Web Interface.,)

文件列表:
.circleci/ (0, 2023-11-30)
.circleci/config.yml (518, 2023-11-30)
.devcontainer/ (0, 2023-11-30)
.devcontainer/Dockerfile (873, 2023-11-30)
.devcontainer/devcontainer.json (335, 2023-11-30)
.dockerignore (48, 2023-11-30)
.vscode/ (0, 2023-11-30)
.vscode/launch.json (496, 2023-11-30)
CHANGELOG.md (5282, 2023-11-30)
Dockerfile (1571, 2023-11-30)
LICENSE (1057, 2023-11-30)
Makefile (425, 2023-11-30)
build/ (0, 2023-11-30)
build/build_release.sh (1186, 2023-11-30)
build/docker/ (0, 2023-11-30)
build/docker/docker-entrypoint.sh (136, 2023-11-30)
build/docker/docker_config.yml (600, 2023-11-30)
build/package-lock.json (84, 2023-11-30)
build/sample_config.yml (2066, 2023-11-30)
cmd/ (0, 2023-11-30)
cmd/main.go (819, 2023-11-30)
dev_config.yml (578, 2023-11-30)
docker-compose.yml (712, 2023-11-30)
docs/ (0, 2023-11-30)
docs/docs.go (40512, 2023-11-30)
docs/swagger.json (39852, 2023-11-30)
docs/swagger.yaml (18898, 2023-11-30)
go.mod (2065, 2023-11-30)
go.sum (20207, 2023-11-30)
internal/ (0, 2023-11-30)
internal/app/ (0, 2023-11-30)
internal/app/handler_instances.go (10839, 2023-11-30)
internal/app/handler_servers.go (2827, 2023-11-30)
internal/app/server.go (7487, 2023-11-30)
... ...

# Assetto Corsa Competizione Server Web Interface [![Discord Shield](https://discordapp.com/api/guilds/913752018588422174/widget.png?style=shield)](https://discord.gg/AVWdF56t6c) [![CircleCI](https://circleci.com/gh/assetto-corsa-web/accweb.svg?style=svg)](https://circleci.com/gh/assetto-corsa-web/accweb) [![Go Report Card](https://goreportcard.com/badge/github.com/assetto-corsa-web/accweb)](https://goreportcard.com/report/github.com/assetto-corsa-web/accweb) The successor of [acweb](https://github.com/assetto-corsa-web/acweb)! accweb lets you manage your Assetto Corsa Competizione servers via a nice and simple web interface. You can start, stop and configure server instances and monitor their status. ## Table of contents 1. [Features](#features) 2. [Changelog](#changelog) 3. [Installation](#installation-and-configuration) 4. [Docker](#docker) 5. [Backup](#backup) 6. [Contribute and support](#contribute-and-support) 7. [Build release](#build-release) 8. [Links](#links) 9. [License](#license) 10. [ACCWeb Discord Server](#accweb-discord-server) ## Features * create and manage as many server instances as you like * configure your instances in browser * start/stop instances and monitor their status * view server logs * copy server configurations * import/export server configuration files * delete server configurations * three different permissions: admin, mod and read only (using three different passwords) * easy setup * no database required * simple configuration using environment variables ## Changelog See [CHANGELOG.md](CHANGELOG.md). ## Installation and configuration accweb is installed by extracting the zip on your server, modifing the YAML configuration file to your needs and starting it in a terminal. ### Manuall installation 1. download the latest release from the release section on GitHub 2. extract the zip file on your server 3. edit the `config.yml` to match your needs 4. open a terminal 5. change directory to the accweb installation location 6. start accweb using `./accweb` on Linux and `accweb.exe` on Windows 8. leave the terminal open (or start in background using screens on Linux for example) 9. visit the server IP/domain and port you've configured, for example: http://example.com:8080 I recommend to setup an SSL certificate, but that's out of scope for this instructions. You can enable a certificate inside the `config.yml`. **Note that you have to install [wine](https://www.winehq.org/) if you're on Linux.** ## Docker Please visite our [Docker Hub repository](https://hub.docker.com/r/accweb/accweb) for more information. https://hub.docker.com/r/accweb/accweb ## Backup To backup your files, copy and save the `config` directory as well as the `config.yml`. The `config` directory can later be placed inside the new accweb version directory and you can adjust the new `config.yml` based on your old configuration (don't overwrite it, there meight be breaking changes). ## Contribute and support If you like to contribute, have questions or suggestions you can open tickets and pull requests on GitHub. All Go code must have been run through go fmt. The frontend and backend changes must be (manually) tested on your system. If you have issues running it locally open a ticket. To run the accweb locally is really simple, make sure that the attribute `dev` is set to true in your `config.yml` file. ### Frontend development environment Our current frontend was built using Vue.js and can be found inside `public` directory. To run the watcher use the following command. ```shell make run-dev-frontend ``` Then when you edit any js file, the watcher will detect and rebuild the js package. ### Backend development environment ACCweb backend is running over golang and can be found inside `internal` directory. Use the following command to run the backend on your terminal. ```shell make run-dev-backend ``` Keep in mind that you need to restart the command for see the changes that you made in the code working (or not :zany_face:) ### Visual Studio Code - Remote container There is a pre-built development environment setup for ACCWeb for Visual Studio Code and Remote Containers. Please, check here how to setup and use: https://code.visualstudio.com/docs/remote/containers ## Build release To build a release, execute the `build_release.sh` script (on Linux) or follow the steps inside the script. You need to pass the build version as the first parameter. Example: To build a release, execute the `build_release.sh` script (on Linux) or follow the steps inside the script. You need to pass the build version as the first parameter. Example: ```shell ./build/build_release.sh 1.2.3 ``` This will create a directory `releases/accweb_1.2.3` containing the release build of accweb. This directory can be zipped, uploaded to GitHub and deployed on a server. ## Links * [Docker Hub](https://cloud.docker.com/repository/docker/kugel/accweb/general) * [Assetto Corsa Forums](https://www.assettocorsa.net/forum/index.php?threads/release-accweb-assetto-corsa-competizione-server-management-tool-via-web-interface.57572/) ## License MIT ## ACCWeb Discord Server Join us on our Discord server to get and provide support. [![ACCWeb Discord](https://discordapp.com/api/guilds/913752018588422174/widget.png?style=banner4)](https://discord.gg/AVWdF56t6c)

近期下载者

相关文件


收藏者