Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itpkg/aries
A web framework for rust language.
https://github.com/itpkg/aries
Last synced: 3 months ago
JSON representation
A web framework for rust language.
- Host: GitHub
- URL: https://github.com/itpkg/aries
- Owner: itpkg
- License: mit
- Created: 2016-06-16T04:16:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-31T20:47:34.000Z (about 8 years ago)
- Last Synced: 2024-07-04T16:27:41.215Z (4 months ago)
- Language: Rust
- Size: 135 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Aries
A web framework for rust language.
## Devel
### Rust
```
pacman -S rust cargo
git clone https://github.com/itpkg/aries.git
cd aries
cargo test -- --nocapture
```### Plugins(for atom)
```
cargo install rustfmt
cargo install racer
echo "export PATH=\$HOME/.cargo/bin:\$PATH" >> ~/.zshrc
```remember to enable autosave
* atom-beautify(beautify on save)
* git-plus
* language-rust
* [racer](https://github.com/phildawes/racer)
* autosave(enable)
* language-mustache
* language-gitignore## Build
```
cargo build --release
strip target/release/aries
RUST_LOG=info ./target/release/aries
```## Notes
* Format rust code file
```
cargo fmt -- --write-mode=replace
```
OR
```
find . -type f -name "*.rs" -exec rustfmt --write-mode replace {} \;
```## Thinks
-
-
-
-
-
-