Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quantum-blocks-h5
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
quantum-blocks-h5
Commits
3fd7edf7
Commit
3fd7edf7
authored
May 28, 2021
by
郭志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 调整命令
parent
4a6d6e27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
apollo.js
bin/apollo.js
+20
-0
server.js
bin/server.js
+1
-1
package.json
package.json
+1
-0
No files found.
bin/apollo.js
0 → 100644
View file @
3fd7edf7
#!/usr/bin/env node
"
use strict
"
;
const
path
=
require
(
'
path
'
);
const
fs
=
require
(
'
fs
'
);
const
apollo
=
require
(
'
@qg/apollo-nodejs
'
);
const
npm
=
require
(
"
npm
"
);
npm
.
load
(()
=>
{
apollo
.
load
({
appId
:
'
quantum-block-h5
'
,
configPath
:
path
.
resolve
(
__dirname
,
'
../config
'
),
}).
then
(()
=>
{
const
{
api
,
qiniu
}
=
require
(
path
.
resolve
(
'
./config/apollo.json
'
));
fs
.
writeFileSync
(
path
.
resolve
(
'
./config/apollo.ssr.json
'
),
JSON
.
stringify
({
...
api
,
...
qiniu
}));
});
});
\ No newline at end of file
bin/server.js
View file @
3fd7edf7
...
@@ -12,7 +12,7 @@ npm.load(() => {
...
@@ -12,7 +12,7 @@ npm.load(() => {
configPath
:
path
.
resolve
(
__dirname
,
'
../config
'
),
configPath
:
path
.
resolve
(
__dirname
,
'
../config
'
),
}).
then
(()
=>
{
}).
then
(()
=>
{
const
{
api
,
qiniu
}
=
require
(
path
.
resolve
(
'
./config/apollo.json
'
));
const
{
api
,
qiniu
}
=
require
(
path
.
resolve
(
'
./config/apollo.json
'
));
fs
.
writeFileSync
(
path
.
resolve
(
__dirname
,
'
./config/apollo.ssr.json
'
),
JSON
.
stringify
({
...
api
,
...
qiniu
}));
fs
.
writeFileSync
(
path
.
resolve
(
'
./config/apollo.ssr.json
'
),
JSON
.
stringify
({
...
api
,
...
qiniu
}));
if
(
process
.
env
.
NODE_ENV
===
'
production
'
)
{
if
(
process
.
env
.
NODE_ENV
===
'
production
'
)
{
npm
.
run
(
"
start
"
);
npm
.
run
(
"
start
"
);
}
else
{
}
else
{
...
...
package.json
View file @
3fd7edf7
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
"backend"
:
"nohup egg-scripts start --port 7001 --workers 4"
,
"backend"
:
"nohup egg-scripts start --port 7001 --workers 4"
,
"dev"
:
"egg-bin dev -r egg-ts-helper/register"
,
"dev"
:
"egg-bin dev -r egg-ts-helper/register"
,
"debug"
:
"egg-bin debug -r egg-ts-helper/register"
,
"debug"
:
"egg-bin debug -r egg-ts-helper/register"
,
"apollo"
:
"node bin/apollo.js"
,
"build"
:
"cross-env COS_ENV=production easy build --devtool"
,
"build"
:
"cross-env COS_ENV=production easy build --devtool"
,
"build:test"
:
"cross-env COS_ENV=test easy build --devtool"
,
"build:test"
:
"cross-env COS_ENV=test easy build --devtool"
,
"tsc"
:
"ets && tsc -p tsconfig.json"
,
"tsc"
:
"ets && tsc -p tsconfig.json"
,
...
...
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