Skip to content

SMCaseyCode/bingehive

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

BingeHive, a dynamic and user-friendly web app designed to be your go-to destination for all things movies and TV shows.
A movie or TV show aficionado's heaven.

Usage Guide

BingeHive is currently live here. To get started, simply visit the site and explore around for different movies or TV shows that are available. If you already know what you are looking for, there is also a search bar to quickly jump to search for a title.

home ss

Technology Stack

  • Frontend
    • HTML, CSS, and JavaScript
  • Backend
    • Node.js - Runtime environment for server-side JavaScript
    • Express - Used for building RESTful APIs and handling routes
    • Nginx - Used as a reverse proxy to reach the Node environment running the web app
    • MySQL - Used for storing and managing user generated data
  • Authentication
    • Express Session - Used for user authentication and authorization
    • Bcrypt - For hashing and salting the user passwords
  • Hosting/Deployment
    • AWS EC2 - Used for deploying the MySQL database and hosting the web app
    • AWS S3 - Used for storing users' profile pictures
    • Docker - Used for quickly deploying in a containerized environment
  • Version Control
    • Git - Used for tracking changes in the codebase
    • Repl - Used for tracking and deploying a testing environment
  • Other Tools
    • MySQLWorkbench - Used to build the database schema
    • IntelliJ - Used to collaborate with others in real time
    • SSH - Used for server administration
  • External APIs
    • YouTube IFrame Player - Used to fetch movie and tv show trailers
    • TMDB - Used to fetch information on movies and tv shows (e.g., titles and descriptions)
  • Additional Dependencies
    • Multer - Used for profile picture file uploading from the user
    • Tingle - Used for modals
    • Cropper - Used for cropping user selected images client side

Explore the Code

You can explore BingeHive's code base by navigating to the src directory found in this GitHub repository. Alternatively, you can simply click this link to take you there directly.

const express = require("express");
const app = express();

app.get("/", (req, res) => {
  res.send("Welcome to BingeHive");
});

app.listen(3000, () => {
  console.log("Server started!");
});

Future Plans

Currently, the generated lists can only be seen by the user that owns them. Future iterations of this web app would allow ideally to share those lists with friends and family, to create a social aspect to the web app.

Acknowledgments/Contact

Feel free to reach out to the team members who contributed to this project. We'd be happy to answer any questions or provide further information.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 57.8%
  • EJS 24.5%
  • CSS 17.6%
  • Dockerfile 0.1%