0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00
Penpot: The open-source design tool for design and code collaboration
Find a file
2016-02-02 21:47:32 +02:00
resources Minor cosmetic fox on layers toolbox. 2016-01-30 13:57:23 +02:00
scripts Add .travis.yml file. 2016-02-02 21:45:51 +02:00
src/uxbox Minor renaming. 2016-02-02 21:34:47 +02:00
test/uxbox Minor renaming. 2016-02-02 21:34:47 +02:00
.gitignore Initial commit 2015-12-30 00:18:59 +02:00
.travis.yml Minor fix on .travis.yml file. 2016-02-02 21:47:32 +02:00
gulpfile.js Initial commit 2015-12-30 00:18:59 +02:00
LICENSE Update package.json, add shrinkwrap and add temporal license file. 2016-02-02 18:18:59 +02:00
npm-shrinkwrap.json Update package.json, add shrinkwrap and add temporal license file. 2016-02-02 18:18:59 +02:00
package.json Update package.json, add shrinkwrap and add temporal license file. 2016-02-02 18:18:59 +02:00
project.clj Update beicon to 0.6.1. 2016-01-28 20:21:27 +02:00
README.md Update readme. 2016-01-20 18:48:23 +02:00

UXBox

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