Your new project at http://localhost:3000
Username: admin@localhost.de
Password: admin
-
Run
lein new closp _projectname_ -n foo.bar
in a different folder -
Run
lein migrate
in the newly created project (This will add an admin user with username: admin@localhost.de and password: admin to a new database) -
Run
lein figwheel
to start figwheel and compile the clojurescript. -
Run
lein rel-jar
to generate a runnable jar file. -
lein repl (use 'figwheel-sidecar.repl-api) (start-figwheel!) (cljs-repl)
SHIFT-INSERT ---> PASTE !!!!!
KOMPILACIJA BEZ FIGWHEEL-a !!!!
lein with-profile -dev,+uberjar cljsbuild once adv
PROMJENA KONFIGURACIJE !!!!
java -jar -Dclosp-config-path=./resources/jus.edn jus-new.jar
- closp-crud integration
- SQlite database on filesystem as a default
- Joplin for database migrations
- Selmer as templating solution
- http-kit as a server
- cljc support
- Figwheel with clojurescript live reloading
- Reloading support for templates and clojure code
- Configuration with nomad
- User management with login/logout/registration and email activation (provided by postal)
- Recaptcha support for signup form
- Authentication provided by buddy
- reagent and datascript on frontend side
- Ring Antiforgery middleware
- Clojure miniprofiler example
- Componentized application
- Datascript with reagent example
- Booststrap css styles
- Example for clj-webdriver tests
- Internationalization support with tower
See it live at: http://sveri.de:3124
Username: admin@localhost.de
Password: admin
There is a dockerfile attached which will fetch the latest version and run an example project.
There is a closp.edn file in the resources folder which should be adapted accordingly.
Closp uses nomad https://github.com/james-henderson/nomad, so you can configure everything as you can do with nomad.
When you start your project from the repl it will load the default closp.edn
from resources
folder, which fits
for development.
For a different config in another environment you can pass in a file path via system environment setting like so:
java -jar -Dclosp-config-path=C:\\path\\to\\iwf-prod.edn closp.jar
.
Please think of changing the :env key in the config to :prod instead of :dev when changing to a different
environment.
This is a module that generates html, routing and sql files for a given table definition. For more information please look here: https://github.com/sveri/closp.
Closp per default is configured to connect to a file SQlite database.
Additionally I added support for joplin https://github.com/juxt/joplin to handle migration of sql scripts.
To get started run lein migrate
in the project folder. This is enough to get running.
Changing the jdbc url in the closp.edn file will switch to another database. But keep in mind you will have to
run the migration step again and change the jdbc url in the joplin.edn
too.
The connection is handled by jdbc https://github.com/clojure/java.jdbc so everything that jdbc supports is supported
by closp out of the box.
Closp comes with korma https://github.com/korma/Korma for an abstraction layer over jdbc. See db\users.clj
for
how it is used.
We use the buddy (https://github.com/funcool/buddy) library for this.
Configuration is done in ns.service.auth
There is a concept of roles, admin and none are alreaded provided, you can add more in the auth namespace.
Or, create a database storage for this.
Next you can find a rules def in the auth namespace which defines the access rules for every available link. For
more information please look at the buddy documentation.
Closp ships with selmer https://github.com/yogthos/Selmer (django inspired) templating solution.
There is a signup workflow implemented that sends out an email after regristration with a link to activate the account. Until the account is activated the user won't be able to login.
The signup form is protected by recaptcha. To make it work open your closp.edn file and fill these values properly:
- :captcha-public-key
- :private-recaptcha-key
- :recaptcha-domain
Closp ships with an administrator interface (/admin/users) to activate / deactivate users and set roles accordingly. There is also an option to add new users.
In dev mode changes the clojure code will be recompiled and reloaded on page refresh. The same is true for the templates. Theoretically this results development without server restarts.
When running in dev mode cljs files will be auto compiled and sent to the browser via figwheel
https://github.com/bhauman/lein-figwheel.
If you want to autoload a different cljs function you have to adapt dev.cljs and the project.clj file at
[:cljsbuild :dev :figwheel].
Closp uses postal https://github.com/drewr/postal for sending authentication links. This can be configured in closp.edn.
Closp comes with some predefined components https://github.com/danielsz/system
- Handler component
- Configuration component
- Database component
- Webserver component
To restart the components just hit (reset)
in the running repl.
https://github.com/weavejester/ring-anti-forgery is enabled per default for every shipped form. If you use ajax post / put / ... calls you need to provide a :X-CSRF-Token in the header. With cljs-ajax for example it would look like this:
(ajax/ajax-request
{:uri url
:method method
:params content
:headers {:X-CSRF-Token (h/get-value "__anti-forgery-token")}})
There is an example on how to use cljs-ajax for doing ajax requests to the server. The request will use transit as
a transport format. You can find that at the uri: "/ajax/page/init"
and in the ajax.cljs
file.
You need to run lein figwheel
at least once to compile the clojurescript.
And finally open the dev.cljs
namespace and change the requiring namespace from
(:require [f.d.core :as core])
to (:require [f.d.ajax :as core])
Closp includes a reagent https://github.com/reagent-project/reagent and datascript https://github.com/tonsky/datascript example taken from https://gist.github.com/allgress/11348685 to get started with frontend development.
There is a leiningen task defined in the project.clj to generate an uberjar. Just execute lein uberjar
.
By default this will include your closp.edn config file in the build from resources folder. You should at least change
the :env entry to :prod or something else than :dev.
There are several ways to setup a more separated dev / staging / prod environment. Please lookup nomad for that.
Closp comes with some examples on how to use clj webdriver in your projects for integration tests. They reside in
integtest\clj
.
Per default the tests are run with the :htlmunit driver, which is fast, but not that good on javascript. To change that,
open: closp.web.setup and adapt the driver in browser-setup
to :firefor
or :chrome
.
Closp uses https://github.com/ptaoussanis/tower for internationalization. It is configured as a component in
your.ns.components.locale
. You have to add additional strings / translations there to use them in your web
application. For examples look at your.ns.routes.user
.
- Miniprofiler https://github.com/yeller/clojure-miniprofiler example in
routes\user.clj -> admin-page function
. The profiler is enabled in development only - Namspace support: Add
-n name.space
option tolein new closp projectname
to provide a namespace for the source files. - Support for flash messages with global flash div
- Self registration can be turned on or off in the closp.edn file in the resources folder.
- Test2junit plugin to create parseable test results.
- Currently working on a webui for closp crud
- Whatever seems useful in the future.
Leiningen 2.5.2 introduced a change which broke existing joplin versions. You have to update your joplin dependencies to at least 0.2.17 to make it work with leiningen 2.5.2
I get this warning: Uncaught Error: Invariant Violation: _registerComponent(...): Target container is not a DOM element.
This will happen only in dev mode for every page where you did not explicitly register your clojurescript with.
Look at dev.cljs for this line :jsload-callback (fn [] (core/main))
and change the call to (core/main)
how you
need it for the page you are working on right now.
Copyright © 2015 Sven Richter
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.