https://github.com/atb00ker/rust-init
Simple template for a rust application
https://github.com/atb00ker/rust-init
Last synced: 4 months ago
JSON representation
Simple template for a rust application
- Host: GitHub
- URL: https://github.com/atb00ker/rust-init
- Owner: atb00ker
- License: mit
- Created: 2024-09-24T11:10:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-11-30T12:58:23.000Z (7 months ago)
- Last Synced: 2025-01-30T10:31:36.657Z (5 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Title
Project Title
## Setup
1. Make sure you have [Rust](https://www.rust-lang.org/tools/install) installed.
2. Clone the repository.
3. Run the following commands:```sh
cargo build
cargo test
cargo run
```4. (Optional) To use cargo commands:
```bash
cargo install cargo-commander
# Later: cargo cmd
```5. (Optional) Auto-restart server
```sh
cargo install cargo-watch
cargo watch -x run
```