configure stub

spacecruft
Jeff Moe 2022-05-03 13:15:44 -06:00
parent 1acd780b7e
commit 6bf83cc053
1 changed files with 42 additions and 2 deletions

View File

@ -12,11 +12,51 @@ sudo apt install npm
git clone git@spacecruft.org:retropilot/retropilot-client.git
cd retropilot-client
npm install
vim src/config.js
```
# Configure
Configure thang.
```
# Just use .env.local not src/config.js?
#vim src/config.js
vim .env.local
# Perhaps something like:
REACT_APP_PUBLIC_URL=http://192.168.108.129:3000
REACT_APP_API_URL=http://192.168.108.128:8080
REACT_APP_WEBSITE_NAME="SpaceCruft RetroPilot Connect - Development"
```
Then open firewall on port `3000` if it is to be accessed remotely.
# Run
Run thang.
```
# Development
npm run start
# Testing
npm test
# Production
npm run build
```
# Use
Use thang.
Go here in a browser on the same machine running:
* http://192.168.108.129:3000/
# Fix
CORS.
# Upstream
This is forked from RetroPilot: