Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhauman/yome-widget
https://github.com/bhauman/yome-widget
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bhauman/yome-widget
- Owner: bhauman
- Created: 2015-05-06T23:06:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T05:41:15.000Z (over 1 year ago)
- Last Synced: 2024-05-08T19:13:33.036Z (6 months ago)
- Language: Clojure
- Size: 869 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Clojure script implementation of the yome-widget.
Requires:
Leiningen: http://leiningen.org
Developement:
Fork bhauman/yome-widget project into own git account (on github.com)
Clone forked yome-widget:
git clone https://github.com/username/yome-widget.git Insert github username in path
Add upstream remote:
cd yome-widget/
git remote add upstream https://github.com/bhauman/yome-widget.git
Update forked repository:
git fetch upstream
git merge upstream/masterRun Leiningin Figwheel in yome-widget directory:
lein figwheelWait for "Prompt will show when figwheel connects to your application"
Open Browser to http://localhost:3449
-port 3449 is default, which is set in project.clj
under :figwheel :server-port tagOpen ./yome-widget/src/yome/core.cljs in your preferred editor
Save edits, and they will display in the browser window automagically.
Update Master Node with Changes:
Merge Git Repositories:
git add .
git commit -m "Descriptive Comment about changes"
git push original master
Request Pull:
Go to forked repository in github.com
Set Branch to master
Click "New Pull Request Button"
Review Changes
Click Create Pull RequestTo Deploy:
Compile yome.js:
Run lein figwheelConnect to localhost:3449 (this is just to get the REPL prompt
At cljs.user=> prompt type:
(clean-builds)
(build-once min)exit REPL (^C)
An alternative to the previous sequence is to use the command-line:
lein cljsbuild once min
Merge Git Repositories:
copy /yome-widget/resources/public/js/compiled/yome.js to github fork
This should be placed under the gh-pages branch in the javascripts folder.Request Pull (see above)