Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Sing App - HTML5 Version
====================================================
# Sing App - HTML5 Version

## Quick Start

Expand All @@ -13,21 +12,19 @@ $ git clone -o sing-app-lite -b master --single-branch \
$ cd MyApp
```

#### 2. Run `npm install && bower install`
#### 2. Run `yarn install`

This will install both run-time project dependencies and developer tools listed
in [package.json](../package.json) file. We are moving all dependencies to npm, so there will be no bower dependencies soon.
This will install run-time project dependencies and developer tools listed in [package.json](../package.json) file.

#### 3. Run `gulp build`
#### 3. Run `yarn build`

This command will build the app from the source files (`/src`) into the output
`/dist` folder. Then open `dist/index.html` in your browser.
This command will build the app from the source files (`/src`) into the output `/dist` folder. Then open `dist/index.html` in your browser.

Now you can open your web app in a browser, on mobile devices and start
hacking. Then open `dist/dashboard/index.html` in your browser. The page must be served from a web server, e.g. apache,
nginx, WebStorm built-in web server, etc., otherwise some features may not work properly.
hacking. Then open `dist/dashboard/index.html` in your browser. The page must be served from a web server, e.g. apache, nginx, WebStorm built-in web server, etc., otherwise some features may not work properly.

#### 3. Run `yarn watch`

#### 3. Run `gulp watch`
This command will watch for changes in `/src` and recompile handlebars' templates & scss styles on the fly into html & css accordingly.

For more information please refer to full [documentation](https://demo.flatlogic.com/sing-app/documentation).
For more information please refer to full [documentation](https://demo.flatlogic.com/sing-app/documentation).
128 changes: 0 additions & 128 deletions bower.json

This file was deleted.

Loading