https://github.com/opusvl/open-ereact-demo
https://github.com/opusvl/open-ereact-demo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/opusvl/open-ereact-demo
- Owner: OpusVL
- Created: 2020-07-28T11:51:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-04T11:06:15.000Z (over 5 years ago)
- Last Synced: 2025-03-13T22:11:20.662Z (over 1 year ago)
- Language: JavaScript
- Size: 836 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Open-eREACT
## Clone this repo
```shell
git clone git@github.com:AppertaFoundation/Open-eREACT.git
cd Open-eREACT
```
## Front-end development environment
The front-end is built in React. The following instructions should help get the development environment up and running.
Once complete, this will not be required.
## Prep / deps
Install and set up yarn - note that the last step may take a while
```shell
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
yarn
```
### Install dependencies
```shell
yarn
```
#### Start with backend auth
(not supported now)
```shell
yarn start
```
#### Start without backend auth
```shell
REACT_APP_NO_BACKEND=true yarn start
```