Updated docs

This commit is contained in:
pepper 2021-01-17 19:56:20 -05:00
parent 781758f0a5
commit b8739d2eca
2 changed files with 25 additions and 0 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local

View File

@ -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
```
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
```
env variables
```
REACT_APP_SITE_URL=SITEURL
REACT_APP_API_ADDRESS=ADDRESS
REACT_APP_API_KEY=APIKEY
```