An open API service indexing awesome lists of open source software.

https://github.com/edtonatto/frontend-scripts


https://github.com/edtonatto/frontend-scripts

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# FRONTEND-Scripts

### Getting started
#### **1. Clone repository:**
```sh
git clone https://github.com/codeitorg/frontend-scripts.git
cd frontend-scripts
```

#### **2. Add dependencies:**
Run `npm install` or `yarn install` in order to install all the dependencies.

#### **3. Create .env file:**
Create a file named `.env` with the same content as `.env.example`.
Replace the default value with your own values, e.g.:

**env.example file**|**.env file**
:-----:|:-----:
REACT_APP_API_URL=http://localhost:3333|REACT_APP_API_URL=http://localhost:5000

#### **4. Run [API-Scripts](https://github.com/codeitorg/api-scripts):**
To see how to run go to this [document](https://github.com/codeitorg/api-scripts/blob/master/README.md)

#### **5. Run FRONTEND:**
```sh
yarn start
```

---