24 lines
715 B
Bash
Executable File
24 lines
715 B
Bash
Executable File
#!/bin/bash
|
|
|
|
checkRoute () {
|
|
if [ "$1" != '1' ]; then rm -rf $2; fi
|
|
}
|
|
|
|
# These conditionals are used to remove directories from the build that are not needed in production
|
|
# This is to reduce the size of the build and prevent OOM errors
|
|
checkRoute "$APP_ROUTER_APPS_SLUG_SETUP_ENABLED" app/future/apps/\[slug\]/setup
|
|
checkRoute "$APP_ROUTER_TEAM_ENABLED" app/future/team
|
|
|
|
# These are routes that don't have and environment variable to enable or disable them
|
|
# Will stop removing gradually as we test and confirm that they are working
|
|
rm -rf \
|
|
app/future/d\
|
|
app/future/enterprise\
|
|
app/future/org\
|
|
app/future/payment\
|
|
app/future/reschedule\
|
|
app/future/routing-forms\
|
|
app/future/signup\
|
|
|
|
exit 1
|