DEV Community

Discussion on: What was your win this week?

Collapse
 
stanleyowen profile image
Stanley Owen • Edited

I've just published my Todo Application - an open sourced, free and easy to use application. This application is aimed for improving productivity! 🤩😲

GitHub logo stanleyowen / todo-application

An open source project of Todo which is easy to use and easy to organize!

Todo Application

Organizing Easier, Improve Your Productivity

Github Issues Github Forks Github Stars MIT License

Netlify Status

Todo Application

Todo Application is an open source project which is easy to use and easy to organize!

Table of Contents

Getting Started

  1. Download this code There are some several quick start options available
  2. Install All the Dependencies
    • Open your terminal
    • Change directory cd to both client and server folder
    • Type npm install in commmand line
  3. Create .env file
    • Inside client directory, create a new file named .env which stores about sensitive information, which is REACT_APP_CLIENT_URL, REACT_APP_SERVER_URL, and REACT_APP_GITHUB_API

      • REACT_APP_CLIENT_URL stores the client side URL
      • REACT_APP_SERVER_URL stores the server side URL
      • REACT_APP_GITHUB_API stores the GitHub current Stars and Forks
        REACT_APP_CLIENT_URL = http://localhost:3000
        REACT_APP_SERVER_URL = http://localhost:5000
        REACT_APP_GITHUB_API = https://api.github.com/repos/stanleyowen/todo-application
        
    • Inside server directory, create a…