mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2024-11-17 08:09:20 +00:00
Nabarun Gogoi
ef0eac8293
* Create web3 modal provider with SIWE * Add auth router to handle SIWE authentication * Use axios instance to make request * Add button for SIWE authentication * Add changes to access session in web-app GQL requests * Add auth check in GQL context and load/create user * Use authenticated user from context * Redirect to sign in page if unauthenticated and logout button * Change sign-in route to login * Get project domain from config file * Set user ethAddress column as unique * Use formatted user name * Get session secret and origin url from config file * Add unique constraint for eth address * Get secure and samesite from origin url * Get wallet connect id and backend url from env file * Format user email in member tab panel * Add backend config isProduction to set trust proxy * Use only one server url config * Add tool tip for displaying email * Add trustProxy and domain in server.session config * Add SERVER_GQL_PATH constant in frontend --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
28 lines
668 B
Bash
Executable File
28 lines
668 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PKG_DIR="./packages/frontend"
|
|
OUTPUT_DIR="${PKG_DIR}/build"
|
|
DEST_DIR=${1:-/data}
|
|
|
|
if [[ -d "$DEST_DIR" ]]; then
|
|
echo "${DEST_DIR} already exists." 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
cat > $PKG_DIR/.env <<EOF
|
|
REACT_APP_SERVER_URL = 'LACONIC_HOSTED_CONFIG_app_server_url'
|
|
REACT_APP_GITHUB_CLIENT_ID = 'LACONIC_HOSTED_CONFIG_app_github_clientid'
|
|
REACT_APP_GITHUB_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_app_github_templaterepo'
|
|
REACT_APP_WALLET_CONNECT_ID = 'LACONIC_HOSTED_CONFIG_app_wallet_connect_id'
|
|
EOF
|
|
|
|
yarn || exit 1
|
|
yarn build || exit 1
|
|
|
|
if [[ ! -d "$OUTPUT_DIR" ]]; then
|
|
echo "Missing output directory: $OUTPUT_DIR" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
mv "$OUTPUT_DIR" "$DEST_DIR"
|