https://github.com/seratch/rpscala-scalatra-example
#rpscala 72 Scalatra Example App
https://github.com/seratch/rpscala-scalatra-example
Last synced: about 1 month ago
JSON representation
#rpscala 72 Scalatra Example App
- Host: GitHub
- URL: https://github.com/seratch/rpscala-scalatra-example
- Owner: seratch
- Created: 2012-03-06T17:13:34.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-07T09:08:04.000Z (about 13 years ago)
- Last Synced: 2025-01-20T22:13:34.799Z (3 months ago)
- Language: Scala
- Homepage:
- Size: 980 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scalatra Example App
## rpscala
http://scala-users.org/shibuya/
http://partake.in/events/4488e148-a614-49fd-bced-20fd896f4461
## Scalatra
http://www.scalatra.org/
https://github.com/scalatra/scalatra
## Getting Started
もし sbt 設定されていない場合はルートディレクトリに置いてあるスクリプトを使ってください。
```sh
git clone git://github.com/seratch/rpscala-scalatra-example.git
cd ./rpscala-scalatra-example
./sbt
```### Jetty を起動
sbt シェルが起動したら web-plugin で Jetty を起動します。
```
container:start
```ブラウザで http://localhost:8080/ にアクセスしてください。
### 変更したら Jetty 再起動
```
~;container:stop;container:start
```