-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
492 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 |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# MinecatServer | ||
Server for the game Minecat | ||
|
||
|
||
## Installation | ||
run `python -m pip -r requirements.txt` to install the server dependencies | ||
|
||
|
||
## Running | ||
Run `uvicorn server:app` to start the server | ||
|
||
The default server port is `8000`. | ||
|
||
Run `uvicorn server:app --host 0.0.0.0 --port 8069` to run the Minecat server on a different port. | ||
|
||
|
||
## Developing | ||
Run `uvicorn server:app --reload` (or with your custom port) to run the Minecat server in development mode. | ||
|
||
Every server file change the server automatically restarts to increase development speed. | ||
|
||
|
||
## License | ||
MIT |
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,4 @@ | ||
fastapi==0.68.0 | ||
uvicorn==0.15.0 | ||
websockets==9.1 | ||
aiofiles==0.7.0 |
Oops, something went wrong.