From 14da50550e84ab25403f8c60026c033fb72d8930 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Thu, 18 Apr 2019 12:04:54 -0400 Subject: [PATCH] ANGEL_ENV -> production in launch.json --- .vscode/launch.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2c69cf0..a172648 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,7 +12,10 @@ "name": "Production Server", "type": "dart", "request": "launch", - "program": "${workspaceRoot}/bin/prod.dart" + "program": "${workspaceRoot}/bin/prod.dart", + "env": { + "ANGEL_ENV": "production" + } } ] }