Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 669 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 669 Bytes

Fullstack boilerplate

To get started:

git clone https://github.com/dev-academy-challenges/boilerplate-fullstack [your-project-name]
cd [your-project-name]
yarn # to install dependencies
yarn dev # to start the dev server

You can find the server running on http://localhost:3000.

This repo includes:

  • a single, simple API endpoint (/api/v1/fruits)
  • a single React component (<App />)
  • a fake database module (db.js)
  • an API client module (apiClient.js)
  • configuration for Jest and Enzyme (including JSDOM)
  • configuration for server-side debugging in VS Code
  • a single client-side test (/tests/client/App.test.js)