https://github.com/ergenekonyigit/reframe-demo
https://github.com/ergenekonyigit/reframe-demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ergenekonyigit/reframe-demo
- Owner: ergenekonyigit
- License: mit
- Created: 2019-03-25T12:32:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T12:32:48.000Z (about 6 years ago)
- Last Synced: 2025-01-02T10:25:47.083Z (5 months ago)
- Language: Clojure
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Development mode
To start the Figwheel compiler, navigate to the project folder and run the following command in the terminal:
```
lein figwheel
```Figwheel will automatically push cljs changes to the browser.
Once Figwheel starts up, you should be able to open the `public/index.html` page in the browser.### REPL
The project is setup to start nREPL on port `7002` once Figwheel starts.
Once you connect to the nREPL, run `(cljs)` to switch to the ClojureScript REPL.### Building for production
```
lein clean
lein package
```