2024-12-23 19:12:00 -05:00
|
|
|
# blazing-console
|
|
|
|
|
|
|
|
A web interface for interacting with the Blazing Games API/WSS.
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
This site is made with Blazor using the fluent design language.
|
|
|
|
|
2024-12-31 23:06:18 -05:00
|
|
|
To build your changes and host a site at `0.0.0.0:5000`, you can run `dotnet run` in a terminal.
|
|
|
|
If you want to use hot reload, you can use `dotnet watch` instead.
|
|
|
|
After doing either of these, you can visit http://localhost:5000 in your web browser to view your changes.
|
2024-12-23 19:12:00 -05:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
A public instance is hosted at https://blazing-console.bedcrab.dev/.
|
|
|
|
|
|
|
|
If you want to build the project files for release (inside the `output/wwwroot` directory):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
dotnet publish -c Release -o ./output
|
|
|
|
```
|
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
2024-12-31 23:06:18 -05:00
|
|
|
If you have patches, bug reports, feature requests, or anything else related to this project, you can
|
|
|
|
contact us via email at `sys@ivycollective.dev`. If you're submitting patches, please use `git send-email`.
|
2024-12-23 19:12:00 -05:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
2024-12-31 23:06:18 -05:00
|
|
|
This software is licensed under the Apache License (version 2.0).
|
|
|
|
For more details, please read the `LICENSE` file, which is located in the same directory as this file.
|