diff --git a/src/environments/environment.local.ts b/src/environments/environment.local.ts
index 46da06fbf4ab930a9f2bcfc19d986d09b3afaa0f..d0dc071216953a746363c3905b15b86c5984813c 100644
--- a/src/environments/environment.local.ts
+++ b/src/environments/environment.local.ts
@@ -1,7 +1,15 @@
 // This file should not be committed
 // It should only contains specific configuration for a dev on his local environment
-
 import {defaultEnvironment} from "./environment.defaults";
 
 export const environmentLocal: typeof defaultEnvironment | any = {
+  tokenEndpoint: "https://localhost/dlcm-authorization/oauth/token",
+  dummyClientSecret: "123abc",
+  clientId: "local-dev-angular",
+  responseType: "token",
+  scope: "READ",
+  requireHttps: false,
+  loginUrl: "https://localhost/dlcm-authorization/oauth/authorize",
+  allowedUrls: ["/api/"],
+  redirectUrl: window.location.origin,
 };