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