Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinriyo/exodus.rs
exodusのRust版
https://github.com/shinriyo/exodus.rs
Last synced: 19 days ago
JSON representation
exodusのRust版
- Host: GitHub
- URL: https://github.com/shinriyo/exodus.rs
- Owner: shinriyo
- Created: 2016-02-14T12:57:13.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-18T15:58:53.000Z (over 8 years ago)
- Last Synced: 2024-04-13T16:17:08.418Z (7 months ago)
- Language: Rust
- Size: 647 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
exodus.rs(エクソダスアールエス)
====CRUDのScaffoldingを生成する
npmを入れなくてもいいです。
Rust + PostgreSQL + AngularJS## 生成されるテンプレートはこのようになるようにしています
https://github.com/shinriyo/nickel-helloworld
※ここにプルリクしてみたら今後変える予定です。# 最低限
カレントディレクトリに
```
src/main.rs
argo.toml
```
が必要# 最低限
`brew install exodus.rs`# 予定コマンド
## AngularやCSSなどのセット初期化
```
exodus init
```## 定義と同時に生成(generateがコマンド)
```
exodus generate item name:string price:integer description:text
```
`g`コマンドもOKである。
```
exodus g item name:string price:integer description:text
```## テーブル初期化
現状は`localhost:6767/setup/item`へアクセスするだけ。
TODO:
```
exodus migrate item
```## テーブル削除
TODO:
```
exodus delete item
```ここにプルリクやアドバイス次第で変わります
TODO:
-------
日本語は基本、英語、韓国語、も今後対応させます。
AngularJSではなくReactにします。自分メモ
-------
`cargo build`
`target/debug/exodus`に生成される## 公開用
```
cp target/debug/exodus bin
```https://raw.githubusercontent.com/shinriyo/exodus.rs/master/bin/exodus
## tar.gz作成
`tar -zcv --exclude='.git' --exclude='.gitignore' --exclude='.idea' --exclude='target' --exclude='.DS_Store' --exclude='assets' -f exodus-0.1.tar.gz exodus`