https://github.com/vip-git/vtstore
Angular based ecommerce store using local storage
https://github.com/vip-git/vtstore
Last synced: about 1 month ago
JSON representation
Angular based ecommerce store using local storage
- Host: GitHub
- URL: https://github.com/vip-git/vtstore
- Owner: vip-git
- License: gpl-2.0
- Created: 2015-05-29T16:20:05.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-29T18:58:01.000Z (about 11 years ago)
- Last Synced: 2024-10-19T12:16:14.592Z (over 1 year ago)
- Language: CSS
- Size: 1.69 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## Prerequisites
```js
This projects assumes git, node and Bower are installed globally.
If thats not the case you can do so by using following guidelines:
Example on Ubuntu:
- sudo apt-get install git nodejs
- https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
if you get in trouble with this feel free to email : contact@vipintanna.com
```
## Installing on your local
```js
npm install && bower install && gulp
&& ./node_modules/http-server/bin/http-server -a localhost -p 9090 www/ -o
- This will install a fresh copy of vtsore on your machine ready to run.
```
## Compiling on your local
```js
These are the following gulp tasks you could use :
gulp default
- Compiles the project as a whole except css which has to be done seperately.
gulp css
- Compiles relevant css files and minifies them to single file.
gulp html
- Compiles relevant html file (index.html) and minifies them to single file.
gulp partials
- Compiles relevant partial files located in partials directory and minifies them to single file.
gulp fonts
- Compiles relevant fonts and copies them to www directory.
gulp data
- Compiles relevant data files and copies them to www directory.
gulp images
- Compiles relevant image files and copies them to www directory.
gulp jscheck
- Checks javascript syntax errors and reports them before compiling javascript files.
gulp js
- Compiles relevant js files and minifies them to single file.
gulp watch
- Watches for any new changes related to above tasks mentioned.
```
## Want to contribute?
Anyone can help make this project better - check out the [Contributing guide](/CONTRIBUTING.md)!