Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytw1/playskool
Play framework onboarding
https://github.com/tonytw1/playskool
Last synced: 7 days ago
JSON representation
Play framework onboarding
- Host: GitHub
- URL: https://github.com/tonytw1/playskool
- Owner: tonytw1
- Created: 2015-05-26T14:01:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T08:57:38.000Z (over 3 years ago)
- Last Synced: 2024-11-15T22:32:08.481Z (about 2 months ago)
- Language: Scala
- Size: 139 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playskool
Simple Play app which renders the available bike status for a single TfL bike hire dock.
Provides exposure to Futures and Play favour of HTTP fetching, JSON parsing and Config.
## Running
```
sbt clean compile run
```App appears on:
```
http://localhost:9000
```## Goals
### Setup a dev environment
- Intelliji CE
- Scala plugin
- Command line sbt and Java### Play framework concepts
- routes
- functions of http request -> http response
- Parameter mapping
- Conf files
- Twirl templates (compiled views)### Scala concepts
- vals / immutable
- Collections - map and filter
- Options - nulls
- Futures