A web app for converting HTML to Hiccup.
lein run
This command will:
- Start a webserver on port 10555
- Start a Figwheel server which takes care of live reloading ClojureScript code and CSS.
Once everything has finished starting up you will be able to browse to http://localhost:10555 and see the running app.
This assumes you have a
Heroku account, have installed the
Heroku toolbelt, and have done a
heroku login
before.
git init
git add -A
git commit
heroku create
git push heroku master:master
heroku open
Heroku uses Foreman to run your
app, which uses the Procfile
in your repository to figure out which
server command to run. Heroku also compiles and runs your code with a
Leiningen "production" profile, instead of "dev". To locally simulate
what Heroku does you can do:
lein with-profile -dev,+production uberjar && foreman start
Now your app is running at http://localhost:5000 in production mode.