Skip to content

A clone of trello, mimicking its basic functionality.

License

Notifications You must be signed in to change notification settings

Mona95/Trello-Clone

 
 

Repository files navigation

Trello-Clone

A clone of trello, mimicking its basic functionality. This project was bootstrapped with Create React App.

Installation:

  1. Clone or download this repository.
  2. Navigate to the project folder: cd Trello-Clone

You’ll need to have Node.js and npm, or Yarn on your local development machine.

Please make sure to have one of them installed before proceeding.

  1. Install the dependencies: npm install / yarn install
  2. Install Git flow in your machine and run the command git flow init in your repository to setup it with the default configuration. This is because the work flow this tool give us, make the development a lot of easier and manageable. It's nothing new, just a shorthand of multiple git commands at once. More info here --> Git Flow Cheatsheet
  3. Get familiar with the basic scripts around this app to understand the development flow:
    As you can see in the image below, there are three important commands:
    package_scripts
  • npm start: Initialize the development server with the watcher compiling our css. We're using PostCSS to allow us use the next css features, imports, nested rules, automatic prefixers and so on... It's like using babel for javascript.
  • npm build: Generate the production build that is ready to deploy.
  • npm test: Search and run all Javascript files that ends with test.js and execute the appropiate tests. Jest for the unit tests and Enzyme for the react components.

CSS Framework:

semantic-ui

About

A clone of trello, mimicking its basic functionality.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.9%
  • CSS 25.5%
  • HTML 22.6%