-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
603dbdd
commit e8a252e
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# MCManager | ||
|
||
MCManager is an easy-to-use Minecraft server manager web application. | ||
|
||
### Features: | ||
|
||
- Run the Minecraft server as a background process. | ||
- Support for Minecraft servers running in Docker containers. | ||
- Turn Minecraft server on and off. | ||
- Check online players. | ||
- Use Rcon. | ||
- Create and download a backup. | ||
- Configurable backup. | ||
- Edit and remove files from config and world folders. | ||
- Edit server.properties file. | ||
- View log files. | ||
|
||
### How to use: | ||
|
||
Download the zip file from releases. Once unzipped, simply run the executable inside "MCManager" directory. | ||
|
||
``` | ||
./MCManager | ||
``` | ||
|
||
The default port is 5555, but it can be changed using the -p flag. For example run: | ||
|
||
``` | ||
./MCManager -p=5001 | ||
``` | ||
|
||
Development: | ||
|
||
For backend cd into the api directory and run the main.go file using the -dev flag. It'll proxy the requests to the front-end running in dev mode in port 3002. | ||
For frontend cd into the src directory and use npm run dev, it defaults to port 3002. If you want to change the port, it needs to be changed in package.json and in the main.go file. | ||
|
||
### TODO: |