-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
build_files.sh
executable file
·52 lines (42 loc) · 1.45 KB
/
build_files.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
python3 -m pip install -r requirements.txt
python3 manage.py collectstatic --noinput
# For vercel write the encoded firebase creds from env to file
# Read base64 encoded text from an environment variable
encoded_text="$FIREBASE_ENCODED"
# Specify the output file path
output_file="project/firebase-cred.json"
# Use Python to decode the base64 text and convert it to JSON
python3 - <<EOF
import base64
import json
import sys
# Read the base64 encoded text from the shell script argument
encoded_text = "$encoded_text"
if not encoded_text:
print("Error: FIREBASE_ENCODED environment variable is not set or empty.", file=sys.stderr)
sys.exit(1)
# Decode the base64 encoded text
try:
decoded_bytes = base64.b64decode(encoded_text)
decoded_text = decoded_bytes.decode('utf-8')
except Exception as e:
print(f"Error decoding base64 text: {e}", file=sys.stderr)
sys.exit(1)
# Convert the decoded text to JSON (assuming the decoded text is a valid JSON string)
try:
json_data = json.loads(decoded_text)
except json.JSONDecodeError as e:
print(f"Error decoding JSON: {e}", file=sys.stderr)
sys.exit(1)
# Specify the output file path
output_file = "$output_file"
# Write the JSON data to the output file
try:
with open(output_file, 'w') as f:
json.dump(json_data, f, indent=4)
print(f"JSON data written to {output_file}")
except IOError as e:
print(f"Error writing JSON to file: {e}", file=sys.stderr)
sys.exit(1)
EOF