An open API service indexing awesome lists of open source software.

https://github.com/prabirshrestha/salvo-template


https://github.com/prabirshrestha/salvo-template

Last synced: about 2 months ago
JSON representation

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.