Weather and Todo Application

This is a project that is a vite-based React application.

This project allows users to obtain information of new york city weather, and to write out tasks that they want to engage in.

Tools needed

  • Visual Studio Code (VSC) Editor (recommended)
  • Git bash (recommended)
  • Vite
  • Open Weather API Key
  • Postgres database
  • This Github repo

Installation

  1. Clone the repository:

    git clone https://github.com/davonbl/web-development-apprentice-project.git
  2. After entering either the client or server directory, install the dependencies in the client and server directories:

    npm install
  3. Start the development server:

    • Client
    npm run dev
    • Server
    npm run start
  4. Create a .env file in the client root directory. This is where your open weather api key will be placed. In regards to the server link, you have to request that link from me:

    VITE_API_KEY=TBD
    VITE_SERVER_LINK=TBD
    
  5. Now you should be able to utilize this application. Cheers!

Documentation