https://github.com/yogthos/swagger-service
swagger-service tutorial using Duct
https://github.com/yogthos/swagger-service
Last synced: 6 months ago
JSON representation
swagger-service tutorial using Duct
- Host: GitHub
- URL: https://github.com/yogthos/swagger-service
- Owner: yogthos
- Created: 2015-10-01T21:24:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-30T19:39:45.000Z (over 8 years ago)
- Last Synced: 2025-03-31T05:03:22.754Z (10 months ago)
- Language: Clojure
- Size: 6.84 KB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# swagger-service
FIXME: description
## Developing
### Setup
When you first clone this repository, run:
```sh
lein setup
```
This will create files for local configuration, and prep your system
for the project.
### Environment
To begin developing, start with a REPL.
```sh
lein repl
```
Run `go` to initiate and start the system.
```clojure
user=> (go)
:started
```
By default this creates a web server at .
When you make changes to your source files, use `reset` to reload any
modified files and reset the server.
```clojure
user=> (reset)
:reloading (...)
:resumed
```
### Testing
Testing is fastest through the REPL, as you avoid environment startup
time.
```clojure
user=> (test)
...
```
But you can also run tests through Leiningen.
```sh
lein test
```
### Generators
This project has several [generators][] to help you create files.
* `lein gen endpoint ` to create a new endpoint
* `lein gen component ` to create a new component
[generators]: https://github.com/weavejester/lein-generate
## Deploying
FIXME: steps to deploy
## Legal
Copyright © 2015 FIXME