From c28d3f960ea0d605bbc2b93d266f1c4861bbc78f Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Thu, 12 May 2022 21:48:37 +0200 Subject: [PATCH] Improve setup --- .env.example | 2 +- .setup/services/auth.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index de68d56..e179bcc 100644 --- a/.env.example +++ b/.env.example @@ -6,4 +6,4 @@ PUBLIC_APPWRITE_HOST=http://localhost/v1 PUBLIC_MAX_FILE_SIZE=300000000 # Note: Should be the same as in the _APP_STORAGE_LIMIT in the Appwrite .env file PUBLIC_DISABLE_REGISTRATION=true # Note: In the Appwrite console you have to change your user limit to 0 if false and else to 1 PUBLIC_DISABLE_HOME_PAGE=false -PUBLIC_MAIL_SHARE_ENABLED=false \ No newline at end of file +PUBLIC_MAIL_SHARE_ENABLED=false # Note: If set to true you have to add your SMTP server. See "Additional configurations" in the README file \ No newline at end of file diff --git a/.setup/services/auth.service.ts b/.setup/services/auth.service.ts index d3fc240..ae79b7c 100644 --- a/.setup/services/auth.service.ts +++ b/.setup/services/auth.service.ts @@ -3,7 +3,7 @@ import rl from "readline-sync"; import cookie from "cookie"; const getToken = async () => { - console.info("Please enter your Appwrite credentials \n"); + console.info("Please enter your Appwrite credentials"); var email = rl.question("Email: "); var password = rl.question("Password: ", { hideEchoBack: true,