https://github.com/edtonatto/frontend-scripts
https://github.com/edtonatto/frontend-scripts
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edtonatto/frontend-scripts
- Owner: EdTonatto
- Created: 2020-02-21T14:08:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T00:38:29.000Z (over 6 years ago)
- Last Synced: 2025-10-29T09:44:16.773Z (7 months ago)
- Size: 6.29 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
---