Lesser fork of retropilot-client https://spacecruft.org/retropilot/retropilot-client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Jeff Moe 6bf83cc053
configure stub
11 months ago
.github Create FUNDING.yml 12 months ago
public dotenv config 1 year ago
src implement login 1 year ago
.browserslistrc create .browserslistrc (and remove support from old browsers...) 1 year ago
.dockerignore add Dockerfile 1 year ago
.env.development fix env/config names 1 year ago
.env.production fix env/config names 1 year ago
.env.test dotenv config 1 year ago
.eslintrc.json implement login 1 year ago
.gitignore add Dockerfile 1 year ago
Dockerfile ci on Dockerfile 1 year ago
LICENSE Initial commit 2 years ago
README-upstream.md mv upstream README 11 months ago
README.md configure stub 11 months ago
nginx.conf add Dockerfile 1 year ago
package-lock.json npm install 11 months ago
package.json chore(package): upgrade dependencies 1 year ago

README.md

retropilot-client

This is a lesser fork of upstream retropilot-client.

Install

Debian Bullseye (11/stable).

sudo apt update
sudo apt install npm


git clone git@spacecruft.org:retropilot/retropilot-client.git
cd retropilot-client
npm install

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:

Fix

CORS.

Upstream

This is forked from RetroPilot:

See also README-upstream.md.