Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
75ab0686
Commit
75ab0686
authored
Nov 22, 2016
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix paths for Requarks-Core production
parent
774f0525
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
agent.js
agent.js
+2
-1
gulpfile.js
gulpfile.js
+4
-4
server.js
server.js
+2
-1
No files found.
agent.js
View file @
75ab0686
...
...
@@ -6,7 +6,8 @@
global
.
PROCNAME
=
'AGENT'
;
global
.
ROOTPATH
=
__dirname
;
global
.
CORE_PATH
=
ROOTPATH
+
'/../core/'
;
global
.
CORE_PATH
=
ROOTPATH
+
'./node_modules/requarks-core/'
;
//global.CORE_PATH = ROOTPATH + '/../core/';
global
.
IS_DEBUG
=
process
.
env
.
NODE_ENV
===
'development'
;
// ----------------------------------------
...
...
gulpfile.js
View file @
75ab0686
...
...
@@ -57,8 +57,8 @@ var paths = {
'./client/scss/*.scss'
],
includes
:
[
'../core'
,
//
'./node_modules/requarks-core'
//
'../core',
'./node_modules/requarks-core'
],
watch
:
[
'./client/scss/**/*.scss'
,
...
...
@@ -68,8 +68,8 @@ var paths = {
fonts
:
[
'./node_modules/font-awesome/fonts/*-webfont.*'
,
'!./node_modules/font-awesome/fonts/*-webfont.svg'
,
//
'../node_modules/requarks-core/core-client/fonts/**/*'
'../core/core-client/fonts/**/*'
'../node_modules/requarks-core/core-client/fonts/**/*'
//
'../core/core-client/fonts/**/*'
],
deploy
:
[
'./**/*'
,
...
...
server.js
View file @
75ab0686
...
...
@@ -7,7 +7,8 @@
global
.
PROCNAME
=
'SERVER'
;
global
.
ROOTPATH
=
__dirname
;
global
.
CORE_PATH
=
ROOTPATH
+
'/../core/'
;
global
.
CORE_PATH
=
ROOTPATH
+
'./node_modules/requarks-core/'
;
//global.CORE_PATH = ROOTPATH + '/../core/';
global
.
IS_DEBUG
=
process
.
env
.
NODE_ENV
===
'development'
;
// ----------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment