Giter VIP home page Giter VIP logo

craned's Introduction

  • app
    • page.tsx (Should show list of posts)
    • [slug] (Should show {slug}'s posts)
    • signin (Sign in)
    • signup (Sign up)
  • stories
    • Button (Client)
    • Posts (Server)
    • User Header
      • Small
      • Big
  • tailwind
    • light/dark mode color
  • Database
    • image
      • id (unique identifier for each image)
      • image (image goes to bucket and this is the id)
      • description (alt text, optional)
    • user
      • id (unique identifier for each user)
      • name (name of the user)
      • bio (biography of the user, optional)
      • pfp (profile picture of the user, references `id` in `image` table)
      • posts (array of post IDs that the user has made)
    • user_likes_post
      • user_id (ID of the user who liked the post, references `id` in `user` table)
      • post_id (ID of the post that was liked, references `id` in `post` table)
    • post
      • id (unique identifier for each post)
      • post_text (text of the post)
      • post_images (array of image IDs associated with the post)
      • post_comments (array of comment IDs associated with the post)
    • comment
      • id (unique identifier for each comment)
      • thecomment (ID of the post that the comment is associated with, references `id` in `post` table)
      • byuser (ID of the user who made the comment, references `id` in `user` table)

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.