https://github.com/queirozfcom/play-box
Ubuntu 14.04 box for developers using Play! Framework (with Scala) and Typesafe Activator
https://github.com/queirozfcom/play-box
Last synced: about 6 hours ago
JSON representation
Ubuntu 14.04 box for developers using Play! Framework (with Scala) and Typesafe Activator
- Host: GitHub
- URL: https://github.com/queirozfcom/play-box
- Owner: queirozfcom
- Created: 2014-07-03T23:37:59.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-01-14T22:52:21.000Z (over 10 years ago)
- Last Synced: 2025-01-03T17:34:25.022Z (over 1 year ago)
- Language: Puppet
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
play-box
========
Vagrant, Puppet to setup a dev environment for Play! Framework.
### Some notes
- Play run on the JVM and, as such, needs a healthy amount of RAM to run. This is why this box is setup with 1698 MB RAM. Feel free to increase this or otherwise customize this value for your purposes.
- Username/password: `vagrant/vagrant`
- Most `activator` commands are analogous to `sbt` commands. In other words, running `activator xpto` will most likely do the same as `sbt xpto`.
- If you get stuck (fail to install dependencies or fail to compile), you can delete `~/.ivy2` and the next time you compile your project, it will start again from scratch (re-installing stuff that may have gotten corrupted or something like that).
### Some activator commands
(`activator` command will be on your `$PATH`)
- `activator new` - creates a new project
- `activator ui` (when in a project directory) - opens activator UI to view your project
- `activator eclipse` (when in a project directory) - generates eclipse files so that you can import your project into eclipse
- `activator compile` (when in a project directory) - compiles your project
- `activator run` (when in a project directory) - runs (and also compiles, if needed) your project