Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
173f885757 |
|||
| ca9648dc41 |
4 changed files with 11 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -163,6 +163,7 @@ dist
|
|||
.DS_*
|
||||
**/*.backup.*
|
||||
**/*.back.*
|
||||
build
|
||||
|
||||
node_modules
|
||||
|
||||
|
|
|
|||
8
README.md
Normal file
8
README.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
## Defining .env file
|
||||
|
||||
---
|
||||
|
||||
### React client environment variables
|
||||
|
||||
- REACT_APP_API_KEY: Hypixel API key for source account
|
||||
- BUILD_PATH: Path for client build folder
|
||||
1
client/public/.htaccess
Normal file
1
client/public/.htaccess
Normal file
|
|
@ -0,0 +1 @@
|
|||
FallbackResource ./index.html
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
"start": "npm start -ws",
|
||||
"build": "npm run build -ws",
|
||||
"prepackage": "npm ci && npm run build",
|
||||
"package": "tar -czf ./build.tar.gz ./build"
|
||||
"package": "tar -czf ./build.tar.gz -C build ."
|
||||
},
|
||||
"author": "C4 Patino",
|
||||
"license": "ISC",
|
||||
|
|
|
|||
Reference in a new issue