Skip to content

Commit

Permalink
now using browserify + vue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
thelinuxlich committed Jul 15, 2015
1 parent 87566ad commit 52f9882
Show file tree
Hide file tree
Showing 35 changed files with 389 additions and 5,090 deletions.
12 changes: 9 additions & 3 deletions README.md
Expand Up @@ -19,10 +19,17 @@ $ dashing-js new sweet_dashboard_project
3. Change your directory to sweet_dashboard_project and install required modules

```shell
$ sudo npm install -g browserify watchify
$ cd sweet_dashboard_project && npm install
```

4. Start the server!
4. Start the automatic asset compilation task:

```shell
$ npm run watch
```

5. Start the server!

```shell
$ dashing-js start
Expand All @@ -39,14 +46,13 @@ Every new Dashing project comes with sample widgets & sample dashboards for you
* Jobs — Your js/coffee jobs for fetching data (e.g for calling third party APIs like twitter). Name them *\*.job.js/\*.job.coffee*
* Lib — Optional js/coffee files to help out your jobs.
* Public — Static files that you want to serve. A good place for a favicon or a custom 404 page.
* Widgets — All the html/css/coffee for individual widgets.
* Widgets — All the vue templates for individual widgets.

Run `dashing-js` from command line to find out what command line tools are available to you.

## TODO

* Implement all the basic widgets
* Add a websocket option
* Replace Mincer with something better
* Refactoring

0 comments on commit 52f9882

Please sign in to comment.