You've already forked blur-admin
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68f9dbcc12 | ||
|
|
764866cf11 | ||
|
|
8dc6a103ac | ||
|
|
ff30bbcf3e | ||
|
|
4033d631f9 | ||
|
|
ba6865ebc8 | ||
|
|
d30b3b666b | ||
|
|
5ab1c38273 | ||
|
|
9837325c8a | ||
|
|
b95e189796 | ||
|
|
48bbf338e1 | ||
|
|
90b53bc22c |
@@ -1,23 +1,23 @@
|
||||
name: Deploy to demo-mint (azure storage)
|
||||
name: Deploy to demo-blur (azure storage)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- demo
|
||||
- demo-blur
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js 10.x
|
||||
- name: Use Node.js 4.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10.x'
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: demo
|
||||
- name: npm install, build
|
||||
ref: demo-blur
|
||||
- name: npm install, gulp, build
|
||||
run: |
|
||||
npm install
|
||||
gulp build
|
||||
@@ -31,7 +31,7 @@ jobs:
|
||||
with:
|
||||
azcliversion: 2.0.72
|
||||
inlineScript: |
|
||||
az storage blob upload-batch -d '$web' -s release --account-name bluradminmint --debug
|
||||
az storage blob upload-batch -d '$web' -s release --account-name bluradmin --debug
|
||||
|
||||
# Azure logout
|
||||
- name: logout
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"baseUrl": "/blur-admin-mint/",
|
||||
"baseUrl": "/blur-admin/",
|
||||
"locals": {
|
||||
"url": "http://localhost:8080",
|
||||
"name": "The Wintersmith's blog",
|
||||
|
||||
@@ -33,9 +33,9 @@ gulp.task('html', ['inject', 'partials'], function () {
|
||||
addRootSlash: false
|
||||
};
|
||||
|
||||
var htmlFilter = $.filter('*.html', { restore: true, dot:true});
|
||||
var jsFilter = $.filter('**/*.js', { restore: true, dot:true});
|
||||
var cssFilter = $.filter('**/*.css', { restore: true, dot:true});
|
||||
var htmlFilter = $.filter('*.html', { restore: true, dot:true });
|
||||
var jsFilter = $.filter('**/*.js', { restore: true, dot:true });
|
||||
var cssFilter = $.filter('**/*.css', { restore: true, dot:true });
|
||||
var assets;
|
||||
|
||||
return gulp.src(path.join(conf.paths.tmp, '/serve/*.html'))
|
||||
|
||||
@@ -11,15 +11,15 @@
|
||||
/** @ngInject */
|
||||
function config(baConfigProvider, colorHelper, $provide) {
|
||||
$provide.decorator('$uiViewScroll', uiViewScrollDecorator);
|
||||
//baConfigProvider.changeTheme({blur: true});
|
||||
//
|
||||
//baConfigProvider.changeColors({
|
||||
// default: 'rgba(#000000, 0.2)',
|
||||
// defaultText: '#ffffff',
|
||||
// dashboard: {
|
||||
// white: '#ffffff',
|
||||
// },
|
||||
//});
|
||||
baConfigProvider.changeTheme({blur: true});
|
||||
|
||||
baConfigProvider.changeColors({
|
||||
default: 'rgba(#000000, 0.2)',
|
||||
defaultText: '#ffffff',
|
||||
dashboard: {
|
||||
white: '#ffffff',
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
/** @ngInject */
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
@import 'theme/conf/mixins';
|
||||
@import 'theme/conf/colorScheme/mint';
|
||||
@import 'theme/conf/colorScheme/blur';
|
||||
@import 'theme/conf/variables';
|
||||
|
||||
Reference in New Issue
Block a user