mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-22 05:54:55 +00:00
14 lines
687 B
Bash
Executable File
14 lines
687 B
Bash
Executable File
cp .env.example .env
|
|
sed -i -e '/REDIS_URL/ s/=.*/=redis:\/\/localhost:6379/' .env
|
|
sed -i -e '/POSTGRES_HOST/ s/=.*/=localhost/' .env
|
|
sed -i -e '/SMTP_ADDRESS/ s/=.*/=localhost/' .env
|
|
sed -i -e "/FRONTEND_URL/ s/=.*/=https:\/\/$CODESPACE_NAME-3000.githubpreview.dev/" .env
|
|
sed -i -e "/WEBPACKER_DEV_SERVER_PUBLIC/ s/=.*/=https:\/\/$CODESPACE_NAME-3035.githubpreview.dev/" .env
|
|
# uncomment the webpacker env variable
|
|
sed -i -e '/WEBPACKER_DEV_SERVER_PUBLIC/s/^# //' .env
|
|
# fix the error with webpacker
|
|
echo 'export NODE_OPTIONS=--openssl-legacy-provider' >> ~/.zshrc
|
|
|
|
# codespaces make the ports public
|
|
gh codespace ports visibility 3000:public 3035:public 8025:public -c $CODESPACE_NAME
|