Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/easingthemes/dwre
https://github.com/easingthemes/dwre
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/easingthemes/dwre
- Owner: easingthemes
- Created: 2014-10-15T21:26:14.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-15T21:33:09.000Z (about 10 years ago)
- Last Synced: 2024-10-15T20:07:05.222Z (2 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##dwre
=========-------------------------------------------
##Prepare
___________________________________________- Check dependencies, and update to latest
- Ruby, Sass, Compass, NodeJs, Git### NODEJS update
```sh
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
```### node modules - globall
```sh
sudo npm install -g yo
sudo npm install -g grunt-cli
sudo npm install -g bower
sudo npm install -g karma
sudo npm install -g karma-cli
```-------------------------------------------
Project 'dwre'
___________________________________________mkdir dwre && cd $_
sudo npm install -g generator-webapp
yo webapp dwre
***lot of errors for bower and npm, not yo.--add description, name, repo etc. in package.json
--change deprecated modules// Run npm and bower again if you got errors
sudo npm install
bower install //no sudo hereexport NODE_PATH=/usr/bin/node/lib/node_modules/
-------------------------------------------
Testing
___________________________________________grunt serve //ok
grunt test //karma errornpm install grunt-karma --save-dev
npm install karma-phantomjs-launcher --save-dev
npm install karma-jasmine --save-dev
sudo npm install -g phantomjs
sudo npm install phantomjsgrunt test //ok
// DEVELOPE ...... FINISH, BUILD
grunt build
//resolve errors
sudo npm install grunt-ngmin --save-devgrunt build
//Now we got dist folder for our app-------------------------------------------
Git
___________________________________________git init
git remote add ugithub https://github.com/easingthemes/repo.git
git remote add bitbucket [email protected]:easingthemes/repo.git
git remote -v* git add .
* git commit -m "commit message"
** git commit -a
git push -u bitbucket --all
* git push upstream master
* git pull upstream mastergit remote set-url github [email protected]:easingthemes/newrepo.git