/json-server-deploy-heroku

A fake RESTful API for testing purposes, ready to deploy to services like Heroku.

Primary LanguageJavaScriptMIT LicenseMIT

Fake RESTful API

A fake RESTful API for testing purposes, running using the npm module json-server. You can easily deploy the API to services like Heroku by simply pushing the repository there.

Installation

Git clone https://github.com/krunalbhandekar/json-server-deploy-heroku.git

Now you are ready to deploy to Heroku:

# Login with your Heroku account
heroku login

# Create the project
heroku create your-api-project-name

# Check status
git status

# Deploy to Heroku
git push heroku master

Test your API by running:

heroku open

Editing the initial data

The database is in the file db.json. You can edit the JSON information there.

After Changes

git add .
git commit -m "message"
git push heroku master

HTTP Requests & Endpoints

Refer to the json-server documentation for how to use your API.