mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
## About The Pull Request A RUN_SERVER.cmd file is a type of batch file on Windows operating systems that can be used to start a server application. Batch files contain a series of commands that are executed by the command line interpreter. They are useful for automating repetitive tasks and can be particularly handy for starting a server with specific configurations or parameters. ## Why It's Good For The Game By double-clicking the RUN_SERVER.cmd file, all these commands are executed in sequence, starting the server with the defined settings. This makes it much easier to start the server than typing out all the commands each time. It’s a convenient way to manage server settings and ensure consistency across server restarts. Batch files like this are widely used in various applications where a server needs to be started with specific parameters on a Windows environment. ## Proof of Testing <details> <summary>Screenshots/Videos</summary>  </details> ## Changelog 🆑 add: Added RUN_SERVER.bat for maintainer issues /🆑
3 lines
71 B
Batchfile
3 lines
71 B
Batchfile
@echo off
|
|
call "%~dp0\tools\build\build.bat" --wait-on-error server %*
|