Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 476 Bytes

windows.md

File metadata and controls

15 lines (13 loc) · 476 Bytes

Setting up environment variables in powershell

Make sure you are in the root folder of the app.

$env:AUTH0_DOMAIN="gunnvantcoffee.us.auth0.com"
$env:API_AUDIENCE="casting"
$env:ALGORITHMS="RS256"
$env:DATABASE_URL="postgresql://postgres:gun125@localhost:5432/capstone"
$env:CLIENT_ID = "8RZRHC0TgvGEUPIuQaaZz9jUcYwh0ZYr"
$env:CALLBACK_URL = "http://localhost:5000/api/token"
$env:FLASK_HOME="run_local.py"
$env:FLASK_ENV="development"
$env:FLASK_DEBUG=1