mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 08:12:27 -05:00
click (http://click.pocoo.org/) is used by flask to run its cli args. In removing flask_script (it's unmaintained), we had to migrate all our commands to use click. This is a change for the better in my eyes - you don't need to define the command in several places, and it makes managing options a bit easier. View diff with whitespace turned off unless you're a masochist.
7 lines
61 B
Bash
Executable File
7 lines
61 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source environment.sh
|
|
flask run -p 6011
|