mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
12 lines
473 B
Bash
12 lines
473 B
Bash
#!/usr/bin/env bash
|
|
# Creates an .env from ENV variables for use with react-native-config
|
|
printf "Old .env file:\n"
|
|
cat .env
|
|
printf "Started script:\n"
|
|
ENV_WHITELIST=${ENV_WHITELIST:-"/ACTIVITY|WEBSOCKET|BACKEND|API|TOKEN|URL/"}
|
|
printf "Creating an .env file with the following whitelist:\n"
|
|
printf "%s\n\n" $ENV_WHITELIST
|
|
set | egrep -e $ENV_WHITELIST | egrep -v "^_" | egrep -v "WHITELIST" > .env
|
|
printf "\n.env created with contents:\n"
|
|
cat .env
|
|
printf "\nEND OF .env\n" |