* feat(api): use same container for sourcemaps and utilities * feat(utilities): moved to same image as chalice * feat(api&utilities): merge in a single image without redundancy
6 lines
166 B
Bash
Executable file
6 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
cd utilities
|
|
nohup npm start &> /tmp/utilities.log &
|
|
cd ..
|
|
python env_handler.py
|
|
chalice local --no-autoreload --host 0.0.0.0 --stage ${ENTERPRISE_BUILD}
|