https://github.com/xtuc/web-front-builder
Docker toolbox for compiling a web front-end
https://github.com/xtuc/web-front-builder
Last synced: 7 months ago
JSON representation
Docker toolbox for compiling a web front-end
- Host: GitHub
- URL: https://github.com/xtuc/web-front-builder
- Owner: xtuc
- License: mit
- Created: 2015-07-01T08:43:20.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-01T09:21:34.000Z (about 11 years ago)
- Last Synced: 2025-03-17T11:52:47.874Z (over 1 year ago)
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web-front-builder
Docker toolbox for compiling a web front-end, which includes:
* [Node.js](https://nodejs.org/) - Node.js
* [Npmjs](npmjs.com) - Npmjs
* [Bower](http://bower.io) - Bower
* [Grunt](http://gruntjs.com) - Grunt
* [Gulp](http://gulpjs.com) - Gulp
* [Less](http://lesscss.org) - Less
* [Typescript](http://www.typescriptlang.org/) - Typescript
### Usage
You need first to set the directory you want to build. For exemple the current dir :
```sh
WORK_DIR=$(pwd)
```
###### npm dependencies:
```sh
docker run -v $WORK_DIR:/root xtuc/web-front-builder npm install
```
###### bower dependencies:
```sh
docker run -v $WORK_DIR:/root xtuc/web-front-builder bower install --allow-root
```
###### grunt tasks:
```sh
docker run -v $WORK_DIR:/root xtuc/web-front-builder grunt
```
###### gulp tasks:
```sh
docker run -v $WORK_DIR:/root xtuc/web-front-builder gulp
```
License
----
MIT