Skip to content

Latest commit

 

History

History
49 lines (27 loc) · 792 Bytes

README.md

File metadata and controls

49 lines (27 loc) · 792 Bytes

Trello Clone Wars

React on the client and Node/Express/Sqlite3 API on the server.

Features

  • Create columns and cards
  • Edit cards
  • Drag and Drop functionality
  • Data saved to a Sqlite3 database via Express API.

HowTo

Prerequisites

Install Locally

  1. clone this repo with

    git clone https://github.com/whiteadi/react-trello-clone-wars.git

    cd into it cd react-trello-clone-wars

  2. cd into /client and /server and install dependencies with

    npm install or yarn

  3. start the server

    npm run start

    or

    yarn start

    which will start the server on port 8000.

  4. start the client

    npm run start

    or

    yarn start

    which will start the client on port 3000.