35 lines
804 B
Markdown
35 lines
804 B
Markdown
|
# 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.
|
||
|
|
||
|
To build your changes and host a site at `0.0.0.0:5000`:
|
||
|
|
||
|
```bash
|
||
|
dotnet run
|
||
|
```
|
||
|
|
||
|
then visit http://localhost:5000.
|
||
|
|
||
|
## 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
|
||
|
|
||
|
Please send an email containing your git patches via the email listed on the copyright header.
|
||
|
|
||
|
## License
|
||
|
|
||
|
This software is licensed under the Apache License (2.0).
|
||
|
For more details, please read the `LICENSE` file, which is located in the same directory as this `README.md` file.
|