mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Update platform cypress workflow * fix syntax * fix syntax * update the workflow * update workflow * update the port * correction in the .env variables * correction in the matrix check * correction in the matrix check * correction in the matrix check * fix for platform ee cypress workflow * Update the workflow for environment specific cypress env * Update ee config * update the file name * update the file name * update typo * update dockerfile * update the port * adding logs to check the migration * added redis to the dockerfile * added redis to the dockerfile * fix redis issue * corrections ce and ee steps * clean up * adding latest submodules * removing submodules * removing submodules --------- Co-authored-by: Adish M <adish.madhu@gmail.com>
24 lines
720 B
Bash
24 lines
720 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
redis-server /etc/redis/redis.conf &
|
|
|
|
# Fix ownership and permissions
|
|
chown -R postgres:postgres /var/lib/postgresql /var/run/postgresql
|
|
chmod 0700 /var/lib/postgresql/13/main
|
|
|
|
# Initialize DB cluster if needed
|
|
if [ ! -s "/var/lib/postgresql/13/main/PG_VERSION" ]; then
|
|
echo "Initializing PostgreSQL..."
|
|
su - postgres -c "/usr/lib/postgresql/13/bin/initdb -D /var/lib/postgresql/13/main"
|
|
fi
|
|
|
|
# Start PostgreSQL
|
|
echo "Starting PostgreSQL..."
|
|
su - postgres -c "/usr/lib/postgresql/13/bin/pg_ctl -D /var/lib/postgresql/13/main -w start"
|
|
|
|
# Export the PORT variable to be used by the application
|
|
export PORT=${PORT:-80}
|
|
|
|
# Start Supervisor
|
|
exec supervisord -c /etc/supervisor/conf.d/supervisord.conf
|