From b8739d2eca9949d9444dd0cff8faa4835507c01a Mon Sep 17 00:00:00 2001 From: pepper Date: Sun, 17 Jan 2021 19:56:20 -0500 Subject: [PATCH] Updated docs --- .gitignore | 1 + README.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/.gitignore b/.gitignore index 4d29575..8692cf6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ # misc .DS_Store +.env .env.local .env.development.local .env.test.local diff --git a/README.md b/README.md index 37e7851..afe8bca 100644 --- a/README.md +++ b/README.md @@ -26,3 +26,27 @@ npm run build The development server will start on `http://localhost:3000` Get css docs here https://materializecss.com/ + +Default .htaccess file + +``` + + + RewriteEngine On + RewriteBase / + RewriteRule ^index\.html$ - [L] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-l + RewriteRule . /index.html [L] + + +``` + +env variables + +``` +REACT_APP_SITE_URL=SITEURL +REACT_APP_API_ADDRESS=ADDRESS +REACT_APP_API_KEY=APIKEY +``` \ No newline at end of file