diff --git a/Express/barAndCafe/Dockerfile b/Express/barAndCafe/Dockerfile index 09ee8fd..d144965 100644 --- a/Express/barAndCafe/Dockerfile +++ b/Express/barAndCafe/Dockerfile @@ -47,7 +47,8 @@ WORKDIR /home/node EXPOSE 3000 # Add Healthcheck -HEALTHCHECK --interval=10s --timeout=10s --start-period=5s --retries=3 CMD wget --no-verbose --tries=1 --spider http://localhost:3000 || exit 1 +# FIXME: faire en sorte que le healthcheck fonctionne +# HEALTHCHECK --interval=10s --timeout=10s --start-period=5s --retries=3 CMD wget --no-verbose --tries=1 --spider http://localhost:3000 || exit 1 # copy from build image COPY --chown=node:node --from=BUILD_IMAGE /home/node/node_modules ./node_modules diff --git a/Express/barAndCafe/src/openTripMaps.ts b/Express/barAndCafe/src/openTripMaps.ts index bbedd21..dd5dd90 100644 --- a/Express/barAndCafe/src/openTripMaps.ts +++ b/Express/barAndCafe/src/openTripMaps.ts @@ -190,4 +190,3 @@ export async function getBox(req:express.Request, res: express.Response) { res.send( await callBox(lon1, lat1, lon2, lat2)) } -//TODO: fair une route ou l'on donne 2 coordonée diff --git a/front/src/pages/account/oauth.astro b/front/src/pages/account/oauth.astro index 6ab0b4a..8daa980 100644 --- a/front/src/pages/account/oauth.astro +++ b/front/src/pages/account/oauth.astro @@ -4,9 +4,6 @@ const redirectUrl = Astro.url.protocol + "//" + Astro.url.host + '/account/oauth const params = Astro.url.searchParams const code = params.get('code') -console.log(redirectUrl) -console.log(Astro.request.headers.get('cookie')) -//TODO socké dans les cookies // load the previously stored provider's data const providerstr = Astro.cookies.get('provider') @@ -42,9 +39,6 @@ await pb.collection('users').authWithOAuth2Code( ).then((authData) => { //REDIRECT console.log("oauth OK !!"); - console.log(JSON.stringify(authData, null, 2)); - console.log(pb.authStore.isValid); - console.log(pb.authStore.isValid); authenticated = true }).catch((err) => { console.log("oauth fail !!");