diff --git a/.env.example b/.env.example index f6ae4fad..e85f8f62 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # Server url -URL=http://sl-server:7777 +URL=http://localhost:7777 # Enable sentry ENABLE_SENTRY=true diff --git a/README.md b/README.md index 545cc853..9453469c 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ Authorization code flow: -http://sl-server:7777/oauth/authorize?client_id=client-id&state=123456&response_type=code&redirect_uri=http%3A%2F%2Flocalhost%3A7000%2Fcallback&state=dvoQ6Jtv0PV68tBUgUMM035oFiZw57 +http://localhost:7777/oauth/authorize?client_id=client-id&state=123456&response_type=code&redirect_uri=http%3A%2F%2Flocalhost%3A7000%2Fcallback&state=dvoQ6Jtv0PV68tBUgUMM035oFiZw57 Implicit flow: -http://sl-server:7777/oauth/authorize?client_id=client-id&state=123456&response_type=token&redirect_uri=http%3A%2F%2Flocalhost%3A7000%2Fcallback&state=dvoQ6Jtv0PV68tBUgUMM035oFiZw57 +http://localhost:7777/oauth/authorize?client_id=client-id&state=123456&response_type=token&redirect_uri=http%3A%2F%2Flocalhost%3A7000%2Fcallback&state=dvoQ6Jtv0PV68tBUgUMM035oFiZw57 Exchange the code to get the token with `{code}` replaced by the code obtained in previous step.