https://github.com/aoirint/minecraft_server_log_hook_api
  
  
    Fluentdから送られてくるMinecraft Bedrock Serverのログを処理してDiscordにメッセージを送るWebhook APIサーバ 
    https://github.com/aoirint/minecraft_server_log_hook_api
  
        Last synced: 4 months ago 
        JSON representation
    
Fluentdから送られてくるMinecraft Bedrock Serverのログを処理してDiscordにメッセージを送るWebhook APIサーバ
- Host: GitHub
- URL: https://github.com/aoirint/minecraft_server_log_hook_api
- Owner: aoirint
- License: mit
- Created: 2023-12-19T07:35:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-10T04:18:00.000Z (over 1 year ago)
- Last Synced: 2025-07-07T05:12:14.709Z (4 months ago)
- Language: Python
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
- 
            Metadata Files:
            - Readme: README.md
- License: LICENSE
 
Awesome Lists containing this project
README
          # minecraft_server_log_hook_api
## Usage
`template.env`を`.env`にコピーして、値を設定します。
### Development
```shell
poetry install
poetry run python scripts/create_jwt_token.py
poetry run python -m minecraft_server_log_hook_api
```
## Docker
```shell
sudo docker build -t docker.aoirint.com/aoirint/minecraft_server_log_hook_api .
sudo docker run --rm -p "127.0.0.1:8000:8000" --env-file "./.env" docker.aoirint.com/aoirint/minecraft_server_log_hook_api
```