https://github.com/tailrecursion/boot.task.tomcat
Boot task to create a standalone Tomcat development server.
https://github.com/tailrecursion/boot.task.tomcat
Last synced: 4 months ago
JSON representation
Boot task to create a standalone Tomcat development server.
- Host: GitHub
- URL: https://github.com/tailrecursion/boot.task.tomcat
- Owner: tailrecursion
- Created: 2014-08-19T21:15:22.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-27T03:13:11.000Z (over 11 years ago)
- Last Synced: 2024-05-09T13:59:52.551Z (about 2 years ago)
- Language: Clojure
- Size: 250 KB
- Stars: 1
- Watchers: 15
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# boot.task.tomcat (experimental)
a local development server for boot 2.
## usage
from build.boot:
```bash
(deftask develop
"Run service during development."
[]
(comp (watch) (speak) (add-src) (web) (uber) (war) (serve)) )
```
from the command line:
```bash
boot serve -f /my/project-one.war -f /my/project-two.war wait
```