Merge pull request #3601 from NGPixel/feat/bs5
chore: fix docker dev boot for parcel build
This commit is contained in:
commit
d8e5092e5f
|
@ -4,6 +4,12 @@ WORKSPACEDIR="/root/src"
|
|||
|
||||
service rsyslog start
|
||||
|
||||
# Generate static assets
|
||||
|
||||
npm install
|
||||
echo "Building static assets... (this could take a minute or two)"
|
||||
npx parcel build
|
||||
|
||||
# Copy config files if needed
|
||||
|
||||
if [ ! -f "$WORKSPACEDIR/ietf/settings_local.py" ]; then
|
||||
|
@ -68,6 +74,7 @@ for sub in \
|
|||
data/developers/www6/ \
|
||||
data/developers/www6/iesg \
|
||||
data/developers/www6/iesg/evaluation \
|
||||
data/developers/media/photo \
|
||||
; do
|
||||
dir="/root/src/$sub"
|
||||
if [ ! -d "$dir" ]; then
|
||||
|
|
2
ietf/.gitignore
vendored
2
ietf/.gitignore
vendored
|
@ -1,3 +1,5 @@
|
|||
/*.pyc
|
||||
/settings_local.py
|
||||
/settings_local_debug.py
|
||||
/settings_local_sqlitetest.py
|
||||
/ietfdb.sql.gz
|
||||
|
|
4301
package-lock.json
generated
4301
package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue