Updated docs
This commit is contained in:
parent
781758f0a5
commit
b8739d2eca
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,6 +13,7 @@
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
|
||||
24
README.md
24
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
|
||||
|
||||
```
|
||||
<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
|
||||
```
|
||||
Reference in New Issue
Block a user