https://github.com/edtonatto/api-scripts
https://github.com/edtonatto/api-scripts
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edtonatto/api-scripts
- Owner: EdTonatto
- Created: 2020-02-21T14:07:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T23:44:16.000Z (over 6 years ago)
- Last Synced: 2025-05-15T10:09:52.174Z (about 1 year ago)
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API-Scripts
### Getting started
#### **1. Clone repository:**
```sh
git clone https://github.com/CodeSplit/api-scripts.git
cd api-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**
:-----:|:-----:
PORT=APIPortValue|PORT=4444
#### **4. Run API:**
```sh
yarn dev
```
---