rwwiv / teachmeto-demo

Demo app for teachme.to using Create T3 App and Chakra UI

Home Page:https://teachmeto.rwwiv.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TeachMe.To Demo Application

This demo application for teachme.to is a TypeScript T3 stack app using the following:

Setup

  1. Copy .env.example to a new .env file

    Note: this app assumes access to a PostgreSQL database as defined in the .env.example file)

    cp .env.example .env
  2. Install project dependencies

    npm install
  3. Run any Prisma migrations

    This will also seed the database with expected values

    npx prisma migrate dev
  4. Run application

    By default the app will run on localhost:3000

    npm run dev

Notable Simplifications

This demo app makes some concessions to simplicity that would not be viable in a real application. Some of these are listed below:

  • Availability for an instructor is a simple list of Datetime objects in the database schema.
  • Users are stubs without auth fields.
  • The app has no useful landing page.
  • Listing images are static and not tied to the listing model.
  • The listing video and it's thumbnail are static local assets.
  • The 404 page follows the system theme but the rest of the app does not.
  • Most buttons simply alert on click.
  • Time panel is simply at bottom of page on mobile.
  • Extra listing images are hidden on mobile.

About

Demo app for teachme.to using Create T3 App and Chakra UI

https://teachmeto.rwwiv.com

License:GNU General Public License v3.0


Languages

Language:TypeScript 88.7%Language:JavaScript 8.9%Language:Shell 1.7%Language:CSS 0.7%