Giter Site home page Giter Site logo

dumpster.io's Introduction

PROJECT 3: dumpster.io

Description:

​ Our MERN stack project will be a pseudo ecommerce site called dumpster.io.

We will model the UI as close as possible to AirBNB and our group will be using Craigslist free listings as our data source.

Instead of buying houses, the site/app will be able to show you local free listings from Craigslist (for us it will be NYC).

The site / app will have authentication, database (Craigslist JSON/scraper depending), react, and node.

Our main goal is to meet these requirements and have a decent ui / clean ui just like AirBNB.

For MVP would be a functional backend with functional authentication, and professional looking front end.

Team Expectations: https://bit.ly/3Jh7U3I


MVP:

​ Frontend to have an extremely clean front end. Have functioning authentication for users. ​

Post-MVP:

​ To have functioning search bar. Also to have a frontend that is just as sleek, if not match AirBNB as close as ​

Goals:

​ To complete the front end, back end, and css done by Monday. Ideally be able to handle any git issues monday. Realistically, may be to have most of the site functioning by Tuesday then git issues after.


Design Reference:

Wireframe


Routes:

Route HTTP Method DB Action Description
/api/signup POST POST User creates an account
/api/login GET GET User logs in to said account
/ GET GET List all posts
/api/upload POST POST User can upload new item if logged in
/api/edit PUT PUT User can edit one of their uploaded posts
/api/delete DELETE DELETE User can delete an item

Schema:

  export const userSchema = new mongoose.Schema({
    username: String,
    hash: String,
    posts: []
  })

  export const productSchema = new mongoose.Schema({
    title: String, 
    author: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
    description: String,
    tags: [],
    time: Date, 
    location: {
      lat: Number,
      long: Number
    }
  })

Component Tree:

Wireframe


Logo

dumpster.io's People

Contributors

joeyvalley avatar knnyshn avatar miguelarias01 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.