-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserve-prod
executable file
·42 lines (36 loc) · 1020 Bytes
/
serve-prod
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
#!/bin/bash
# ----------------------------------
# Colors
# ----------------------------------
NOCOLOR='\033[0m'
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
BLUE='\033[0;34m'
PURPLE='\033[0;35m'
CYAN='\033[0;36m'
LIGHTGRAY='\033[0;37m'
DARKGRAY='\033[1;30m'
LIGHTRED='\033[1;31m'
LIGHTGREEN='\033[1;32m'
YELLOW='\033[1;33m'
LIGHTBLUE='\033[1;34m'
LIGHTPURPLE='\033[1;35m'
LIGHTCYAN='\033[1;36m'
WHITE='\033[1;37m'
# Handling for Git Bash for Windows
case "$(uname -s)" in
MINGW*)
export FORCE_COLOR=true
;;
esac
# ----------------------------------
# Set default hosts/ports
DJANGO_PORT="${DJANGO_PORT:-8080}"
DB_HOST=${DB_HOST:-127.0.0.1}
DB_PORT=${DB_PORT:-5432}
DB_NAME=${DB_NAME:-cs_toolkit}
DB_USER=${DB_USER:-cs_toolkit}
DB_PASS=${DB_PASS:-cs_toolkit}
echo -e "${CYAN}Starting production server (port ${DJANGO_PORT})...${NOCOLOR}"
DB_HOST=${DB_HOST} DB_PORT=${DB_PORT} DB_NAME=${DB_NAME} DB_USER=${DB_USER} DB_PASS=${DB_PASS} yarn workspace django-backend run serve -p ${DJANGO_PORT}