mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 14:42:24 -05:00
Source the configuration from an environment file, this way it is similar to how the aws environment works
7 lines
76 B
Bash
Executable File
7 lines
76 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source environment.sh
|
|
python3 application.py runserver
|