start.sh 86 B

1234567
  1. #!/bin/bash
  2. export FLASK_APP=myCar.py
  3. export FLASK_ENV=development
  4. flask run
  5. exit 0