https://github.com/markcial/clojure-webapp-demo
Clojure webapp sample
https://github.com/markcial/clojure-webapp-demo
Last synced: 2 months ago
JSON representation
Clojure webapp sample
- Host: GitHub
- URL: https://github.com/markcial/clojure-webapp-demo
- Owner: Markcial
- Created: 2015-10-22T21:27:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-23T07:46:09.000Z (over 9 years ago)
- Last Synced: 2025-02-05T03:34:22.129Z (4 months ago)
- Language: Clojure
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webapp
FIXME
## Prerequisites
You will need [Leiningen][] 2.0.0 or above installed.
[leiningen]: https://github.com/technomancy/leiningen
## Running
To start a web server for the application, run:
lein ring server
To connect to the remote nrepl, run:
lein repl :connect 127.0.0.1:9999
Once inside the repl, change the scope:
(in-ns 'webapp.handler)
Print name variable with:
whom
Replace name variable with:
(def whom "Mike")
Reload server to see the new variable loaded over http
## License
Copyright © 2015 FIXME