https://github.com/prabirshrestha/salvo-template
https://github.com/prabirshrestha/salvo-template
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/prabirshrestha/salvo-template
- Owner: prabirshrestha
- Created: 2023-12-18T03:26:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-21T01:25:02.000Z (4 months ago)
- Last Synced: 2025-02-23T23:41:41.306Z (4 months ago)
- Language: Rust
- Size: 341 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
_This is a template for [cargo-generate](https://cargo-generate.github.io/cargo-generate/)._
_Use with `cargo generate prabirshrestha/salvo-template`._# {{project-name}}
My web project.
## Building
```bash
cargo build
```or
```bash
cargo xtask build
```## Running
```bash
cargo run
```## Running with watch mode
```bash
cargo watch -x run
```or
```bash
cargo xtask dev
```To override the default host and port, use the `--host` and `--port` flags:
```bash
cargo xtask dev --host 127.0.0.1 --port 8080
```## Api Docs
Navigate to [http://localhost:8000/api-doc](http://localhost:8000/api-doc) to view the interactive API documentation.