Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Latest commit

 

History

History
57 lines (39 loc) · 1.72 KB

File metadata and controls

57 lines (39 loc) · 1.72 KB

CSS

SVG

z-index experiements

https://codepen.io/GarySiu/pen/YBqxjL

Flexbox layout

https://css-tricks.com/snippets/css/a-guide-to-flexbox/ https://flexboxfroggy.com/

Github

Github code for the workshop

The code for this workshop is contained in the Github repository ClojureScript example, the code for each section is in a specific branch.

To get a copy of the repository, use the following git clone command which creates a new directory called clojure-webapps-example that contains the cloned code.

git clone https://github.com/practicalli/clojurescript-example.git

Once you have the repository, use git checkout branch-name to get the code for each section. Each branch is a working application with all the features covered in that section

Use git branch to show all the branches available, they should match the names of the sections in this workshop.

Enjoy.

Deploying to Heroku

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

Running with Foreman

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.