Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 767 Bytes

File metadata and controls

44 lines (29 loc) · 767 Bytes

CoinScope Full Stack App

CoinScope is a full-stack crypto prediction app with an Express/MongoDB backend and a React frontend.

Project Structure

  • backend/: Node.js and Express API
  • coinscope/: React application

Getting Started

Backend

cd backend
npm install
npm run dev

Frontend

cd coinscope
npm install
npm start

Available Scripts

Backend

  • npm start: runs app.js
  • npm run dev: runs app.js with nodemon

Frontend

  • npm start: starts the React development server
  • npm test: runs the test suite
  • npm run build: creates a production build

Notes

  • The frontend was created with Create React App.
  • Make sure the backend is running before using features that depend on the API.