https://github.com/mikavilpas/build-monitor
Follow your project status in real time
https://github.com/mikavilpas/build-monitor
Last synced: 3 months ago
JSON representation
Follow your project status in real time
- Host: GitHub
- URL: https://github.com/mikavilpas/build-monitor
- Owner: mikavilpas
- Created: 2016-04-20T10:57:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-21T18:03:16.000Z (almost 9 years ago)
- Last Synced: 2024-12-25T11:42:10.226Z (4 months ago)
- Language: Clojure
- Size: 290 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Visually follow real-time build status
- Is my application working?
- Can I publish my application?
- Which builds are running? When will they finish?Gain insight with details
- How long ago did events happen?
- Latest change in buildQuickly react to common build errors
- Why are my builds failing?Stay informed about recent project events
- What has happened when I was at lunch, or sick?
- Make better decisions with better dataA build is a set of actions the build server performs.
Actions can be:
- code on a branch, or many branches
- compilation or minification or similar
- initialization of test database
- running tests
- email/other notificationsHow to get started developing
======There are four builds:
- `min`: production, minified build. Accessible at `index.html`
- `dev`: Mimics production; like `min` but for development. Located at `index-dev.html`
- `devcards`: Tests and isolated test environments. Located at `devcards.html`
- `demo`: like `devcards` but minified. Used in the interactive demo on github.You can start the development environment like so:
- start emacs
- open `project.clj`
- M-x cider-jack-in-clojurescript
- navigate to the clj repl buffer
;; When connected, write
(start)- navigate to the cljs repl buffer
;; enter to the buffer:
(cljs "devcards")
to connect to the devcards buildor to connect to the dev build, write
(cljs "dev")Figwheel builds and development time commands are defined in dev/user.clj
Once the previous commands have been executed, you can navigate to one of these
pages:
- http://localhost:3449/
- http://localhost:3449/index-dev.html
- http://localhost:3449/cards.html
- http://localhost:3449/demo.html