Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cenkce/webstarter
Web application boilerplate for front-end devlepoers.
https://github.com/cenkce/webstarter
Last synced: 16 days ago
JSON representation
Web application boilerplate for front-end devlepoers.
- Host: GitHub
- URL: https://github.com/cenkce/webstarter
- Owner: cenkce
- Created: 2015-12-21T10:13:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-09T00:07:05.000Z (almost 9 years ago)
- Last Synced: 2023-04-05T14:33:44.129Z (over 1 year ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webstarter #
Web application boilerplate for front-end devlepoers.
## Installation ##
`$ git clone [email protected]:cenkce/webstarter.git`
- Install Nodejs requirements
`$ npm install`- Install Bower requirements
`$ bower install`
## Usage ##
Build project files :
`$ gulp`
or
`$ gulp --production=1`And preview via BrowserSync :
`$ gulp watch`
## Assets, Dependencies and Build Management : ##
Use bower and manifest.json
manifest.json Example:
```javascript{
"dependencies": {
"vendor.js": {
"files": [
],
"vendor": [],
"bower": ["jquery",
"modernizr",
"bootstrap-sass-official",
"angular",
"angular-ui-router",
"angular-animate",
"angular-resource",
"almond"
],
"main": true
},
"app.js": {
"files": [
],
"vendor": [
"./app/**/*.js"
],
"main": true
},
"main.css": {
"files": [
"less/main.less",
"sass/main.scss",
"css/**/*.css"
],
"main": true
},
"fonts": {
"files": ["fonts/**/**"]
},
"images": {
"files": ["images/**/**"]
}
},
"paths": {
"source": "assets/",
"dist": "dist/"
},
"config": {
"config": {
"devUrl": "http://example.dev",
"useES2015": true
}
}
}
```