mirror of
https://github.com/suitenumerique/messages.git
synced 2026-09-01 04:38:55 +02:00
* 🚀(scalingo) add scalingo nginx config * 👷(frontend) fix frontend build, no lint for now * 👷(scalingo) fix frontend build location and backend buildpack compat * 🐛(nginx) try another build location * 🐛(scalingo) fix nginx startup * 🐛(scalingo) fix scripts and buildpack run location * 🐛(scalingo) fix buildpack cleanup * 🐛(nginx) pass host headers to the backend * 🚀(scalingo) support DATABASE_URL env var
11 lines
298 B
Bash
11 lines
298 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit # always exit on error
|
|
set -o pipefail # don't ignore exit codes when piping output
|
|
|
|
echo "-----> Running post-compile script"
|
|
|
|
# Remove all the files we don't need
|
|
rm -rf src docker env.d .cursor .github compose.yaml README.md .cache
|
|
|
|
chmod +x bin/scalingo_run_web |