0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00
Penpot: The open-source design tool for design and code collaboration
Find a file
2016-02-26 19:39:37 +02:00
resources Add !important to some styles related to drang and drop. 2016-02-24 22:11:33 +02:00
scripts More improvements to deploy tasks. 2016-02-21 20:42:01 +02:00
src/uxbox Add equality check for local mixin for avoid rerenders. 2016-02-26 19:39:37 +02:00
test/uxbox Add more tests to drop-shape function. 2016-02-24 22:11:33 +02:00
.gitignore Prepare scripts for deploy. 2016-02-21 16:42:35 +02:00
.nvmrc Add .nvmrc file. 2016-02-19 21:22:28 +02:00
.travis.yml More improvements to the test runner. 2016-02-02 22:04:45 +02:00
gulpfile.js Fix scss watcher. 2016-02-24 16:45:49 +02:00
LICENSE Update package.json, add shrinkwrap and add temporal license file. 2016-02-02 18:18:59 +02:00
npm-shrinkwrap.json Prepare scripts for deploy. 2016-02-21 16:42:35 +02:00
package.json More fixes on deploy scripts. 2016-02-21 20:50:26 +02:00
project.clj Add postal 0.3.0 dependency. 2016-02-24 17:26:23 +02:00
README.md Add travis badge to readme. 2016-02-04 23:04:38 +02:00

UXBox

Travis Badge

Development

Grab the code and run:

$ ./scripts/figwheel

This will compile ClojureScript whenever you make changes and serve the application in localhost. Open the page.

ClojureScript browser-connected REPL

The aforementioned command also starts a nrepl (network REPL) in the port 7888.

You can connect to it from a shell using the following command:

$ lein repl :connect 7888

In Emacs you can use cider's M-x cider-connect command and tell it that nREPL is running on localhost:7888 to connect.

After connecting to nREPL, run the following Clojure code in it:

user> (use 'figwheel-sidecar.repl-api)
user> (cljs-repl)

After that, a figwheel message will appear and the prompt will change to cljs.user>. We can now evaluate ClojureScript in the browser from the REPL.

Static resources generation

The project's static resources are processed using gulp. First of all, install the npm dependencies running:

npm install

To start watching the files and process them with each change, run:

npm run watch

To process the resources just once, run:

npm run dist

Transformation from HTML to hiccup

For transforming the generated HTMLs to hiccup form, execute the following command:

$ lein with-profile +front hicv 2clj resources/public/templates/*.html

The .clj files in the hicv directory will contain the hiccup versions of the HTML templates.

License

TODO