forked from akveo/blur-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): add development build to documentation
- Loading branch information
Showing
5 changed files
with
100 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: Downloads | ||
author: vl | ||
sort: 900 | ||
group: Other | ||
template: article.jade | ||
--- | ||
|
||
If you have problems installing node.js and/or other tools to build and run BlurAdmin on your machine and you just want to download html/js/css files, you can find links for download on this page. | ||
|
||
Development (non-compressed) files can be found in `{ARCHIVE_ROOT}/blur-admin-{VERSION}/dev-release` directory. Compressed files are in `{ARCHIVE_ROOT}/blur-admin-{VERSION}/release` directory. | ||
Then you can just open `index.html` to view your local version. | ||
|
||
**Please note**: *As chrome doesn't support AJAX requests, when you open HTML file via **file** protocol, you might need to disable web security to have your template running.* | ||
|
||
Sample command on OS X: | ||
|
||
```bash | ||
open -a Google\ Chrome --args --disable-web-security --user-data-dir=~/ChromeDevSession/ | ||
``` | ||
|
||
Sample command on Linux: | ||
|
||
```bash | ||
google-chrome --user-data-dir="~/chrome-dev-session" --disable-web-security | ||
``` | ||
|
||
Sample command on Windows: | ||
|
||
```bash | ||
start chrome --user-data-dir="C:/Chrome dev session" --disable-web-security | ||
``` | ||
|
||
## Links for downloads | ||
|
||
[BlurAdmin 1.2.0](/blur-admin/downloads/blur-admin-1.2.0.zip) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
'use strict'; | ||
|
||
var path = require('path'); | ||
var gulp = require('gulp'); | ||
var conf = require('./conf'); | ||
|
||
var $ = require('gulp-load-plugins')({ | ||
pattern: ['gulp-*', 'main-bower-files'] | ||
}); | ||
|
||
var _ = require('lodash'); | ||
|
||
gulp.task('dev-fonts', function () { | ||
return gulp.src($.mainBowerFiles()) | ||
.pipe($.filter('**/*.{eot,svg,ttf,woff,woff2}')) | ||
.pipe($.flatten()) | ||
.pipe(gulp.dest(path.join(conf.paths.devDist, 'fonts'))); | ||
}); | ||
|
||
gulp.task('dev-copy-lib', function () { | ||
var assets = require('wiredep')(_.extend({}, conf.wiredep)); | ||
var srcList = []; | ||
srcList.push.apply(srcList, assets.js); | ||
srcList.push.apply(srcList, assets.css); | ||
return gulp | ||
.src(srcList/*, { base: '.' }*/) | ||
/* .pipe($.rename(function (p) { | ||
p.dirname = p.dirname.replace(/\\/g, '/').replace('bower_components/', ''); | ||
if (p.dirname.indexOf('/') !== -1) { | ||
p.dirname = p.dirname.substr(0, p.dirname.indexOf('/')); | ||
} | ||
}))*/ | ||
.pipe(gulp.dest(path.join(conf.paths.devDist, 'lib'))); | ||
}); | ||
|
||
gulp.task('dev-css-replace', ['dev-copy-assets'], function() { | ||
return gulp.src(path.join(conf.paths.devDist, '*.html')) | ||
.pipe($.replace(/<link rel="stylesheet" href="\.\.\/bower_components\/.*\/(.*)"\s*?\/>/g, '<link rel="stylesheet" href="lib/$1" >')) | ||
.pipe(gulp.dest(conf.paths.devDist)); | ||
}); | ||
|
||
gulp.task('dev-js-replace', ['dev-copy-assets'], function() { | ||
return gulp.src(path.join(conf.paths.devDist, '.html')) | ||
.pipe($.replace(/<script src="\.\.\/bower_components\/.*\/(.*)"\s*?>/g, '<script src="lib/$1">')) | ||
.pipe(gulp.dest(conf.paths.devDist)); | ||
}); | ||
|
||
gulp.task('dev-copy-assets', ['inject', 'dev-copy-lib', 'dev-fonts'], function () { | ||
return gulp | ||
.src([ | ||
conf.paths.src + '/**/*', | ||
path.join(conf.paths.tmp, '/serve/**/*') | ||
]) | ||
.pipe(gulp.dest(conf.paths.devDist)); | ||
}); | ||
|
||
gulp.task('dev-release', ['dev-css-replace', 'dev-js-replace']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters