diff --git a/.setup/data/functions.ts b/.setup/data/functions.ts index ac4a90b..8e88f2f 100644 --- a/.setup/data/functions.ts +++ b/.setup/data/functions.ts @@ -12,12 +12,12 @@ export default () => { vars: { APPWRITE_FUNCTION_ENDPOINT: host, APPWRITE_FUNCTION_API_KEY: process.env["APPWRITE_FUNCTION_API_KEY"], - SMTP_HOST: "", - SMTP_PORT: "", - SMTP_USER: "", - SMTP_PASSWORD: "", - SMTP_FROM: "", - FRONTEND_URL: "", + SMTP_HOST: "-", + SMTP_PORT: "-", + SMTP_USER: "-", + SMTP_PASSWORD: "-", + SMTP_FROM: "-", + FRONTEND_URL: "-", }, events: [], schedule: "", diff --git a/.setup/services/auth.service.ts b/.setup/services/auth.service.ts index b68f619..d3fc240 100644 --- a/.setup/services/auth.service.ts +++ b/.setup/services/auth.service.ts @@ -3,6 +3,7 @@ import rl from "readline-sync"; import cookie from "cookie"; const getToken = async () => { + console.info("Please enter your Appwrite credentials \n"); var email = rl.question("Email: "); var password = rl.question("Password: ", { hideEchoBack: true,