From 1b090fd75bdf1021f35b61ec0244230a49f5bbb3 Mon Sep 17 00:00:00 2001 From: Paolo Arena Date: Sun, 27 Mar 2022 23:05:10 +0200 Subject: [PATCH] 3.0.13 --- .env.example.production | 27 +++++++++++++++++++++++++++ README.md | 7 +++++++ 2 files changed, 34 insertions(+) create mode 100755 .env.example.production diff --git a/.env.example.production b/.env.example.production new file mode 100755 index 00000000..d1527f19 --- /dev/null +++ b/.env.example.production @@ -0,0 +1,27 @@ +APP_VERSION="0.3.13" +SERVICE_WORKER_FILE="service-worker.js" +APP_ID="13" +DIRECTORY_LOCAL=newfreeplanet +DIRECTORY_SERVER=freeplanet_serverside +SERVERDIR_WEBSITE=riso.app +SERVERPW_WEBSITE= +APP_URL="https://riso.app" +URL_FACEBOOK="" +PROVA_PAOLO="" +LANG_DEFAULT="it" +PAO_APP_ID="KKPPAA5KJK435J3KSS9F9D8S9F8SD98F9SDF" +MASTER_KEY="KKPPSS5KJK435J3KSS9F9D8S9F8SD3CR3T" +MONGODB_HOST="https://www.freeplanet.app:3000" +LOGO_REG='riso-logo-full.png' +TEST_NAME="" +TEST_SURNAME="" +TEST_EMAIL="" +TEST_USERNAME="" +TEST_PASSWORD="" +TEST_APORTADOR="------" +PUBLICKEY_PUSH="" +DEBUG="1" +TELEGRAM_SUPPORT="" +PROJECT_ID_MAIN="5cc0a13fe5c9d156728f400a" +TEST_CELL="" +ISTEST=0 diff --git a/README.md b/README.md index b98607a6..e118c5fc 100755 --- a/README.md +++ b/README.md @@ -77,12 +77,19 @@ npm run pwa ### Build the app for test Server ```bash +cp .env.example.production .env.test +nano .env.test +# and change SERVERPW_WEBSITE and PUBLICKEY_PUSH keys in this file + ./deploy_on_test_server.sh ``` ### Build the app for production ```bash +cp .env.example.production .env.production +nano .env.production +# and change SERVERPW_WEBSITE and PUBLICKEY_PUSH keys in this file ./deploy_on_production.sh ```