https://github.com/cellane/film-ratings
https://github.com/cellane/film-ratings
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cellane/film-ratings
- Owner: Cellane
- Created: 2020-04-02T04:11:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-03T00:22:42.000Z (about 6 years ago)
- Last Synced: 2025-02-03T14:26:41.608Z (over 1 year ago)
- Language: Clojure
- Size: 27.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# film-ratings
FIXME: description
## Developing
### Setup
When you first clone this repository, run:
```sh
lein duct 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
```
Then load the development environment.
```clojure
user=> (dev)
:loaded
```
Run `go` to prep and initiate the system.
```clojure
dev=> (go)
:duct.server.http.jetty/starting-server {:port 3000}
:initiated
```
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
dev=> (reset)
:reloading (...)
:resumed
```
### Testing
Testing is fastest through the REPL, as you avoid environment startup
time.
```clojure
dev=> (test)
...
```
But you can also run tests through Leiningen.
```sh
lein test
```
## Legal
Copyright © 2020 FIXME