File tree Expand file tree Collapse file tree 5 files changed +5763
-3698
lines changed Expand file tree Collapse file tree 5 files changed +5763
-3698
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,10 @@ echo "-- Pulling git submodules into local --"
10
10
git pull --recurse-submodules
11
11
12
12
echo " -- Installing digital-form-builder-adapter locally --"
13
- node update-package.js
14
13
yarn install
15
14
16
- echo " -- Building digital-form-builder-adapter locally --"
17
- yarn setup
18
-
19
- echo " -- Building digital-form-builder locally --"
20
- # shellcheck disable=SC2164
21
- cd digital-form-builder
22
- yarn
23
-
24
15
echo " -- Building digital-form-builder model locally --"
25
- yarn model build
16
+ yarn digital-form-builder/model build yarn model build
26
17
27
18
echo " -- Building digital-form-builder queue-model locally --"
28
- yarn queue-model build
19
+ yarn digital-form-builder/ queue-model build
Original file line number Diff line number Diff line change 1
1
nodeLinker : node-modules
2
-
2
+ cacheFolder : .yarn/cache
3
3
plugins :
4
4
- path : .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
5
5
spec : " @yarnpkg/plugin-workspace-tools"
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ const serverOptions = () => {
57
57
} ;
58
58
59
59
export async function createServer ( ) {
60
+ console . log ( "*** SERVER CREATING WITH PLUGINS ***" )
60
61
//@ts -ignore
61
62
const server = hapi . server ( serverOptions ( ) ) ;
62
63
await server . register ( errorHandlerPlugin ) ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import {createServer} from "./createServer";
4
4
createServer ( )
5
5
. then ( ( server ) => server . start ( ) )
6
6
. then ( ( ) => process . send && process . send ( "online" ) )
7
+ . then ( ( ) => console . log ( "*** SERVER STARTED ***" ) )
7
8
. catch ( ( err ) => {
8
9
console . error ( err ) ;
9
10
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments