Skip to content

CodeWorks Nov20-Cohort thesis project

Notifications You must be signed in to change notification settings

anakreppel/heaps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

492 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to heaps !

An app for sharing food with people near you and reducing waste. Users can upload items, categorized as either dishes or groceries, which can be discovered based on one’s geographical location. Users can also request items, and communicate through the chat to coordinate the pick-up at a preferred time.

Screenshots

Getting Started

  1. Clone this repository with the command and get into the main directory

    git clone https://github.com/braga-felipe/heaps
    cd heaps
  2. Get into the server directory and install the dependencies

    cd server
    npm install
  3. From the server directory, get into the client directory and install the dependencies there as well

    cd ../client
    npm install
  4. The app uses a PostgreSQL database. In the server/index.ts file, on line 52, replace the process.env.DB_URL with a link to your own PostgreSQL database.

     ...
     await createConnection({
     url: process.env.DB_URL, # <---- enter your URL here!
     type: 'postgres',
     ...
     ...

About

CodeWorks Nov20-Cohort thesis project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 85.2%
  • JavaScript 14.2%
  • Other 0.6%