Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert from appDir to pages #1

Open
wants to merge 46 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4a9f0fb
feat: revert from appDir to pages
transitive-bullshit Nov 21, 2022
ce01f00
feat: re-enable next-themes dark mode toggle
transitive-bullshit Nov 21, 2022
e2773de
feat: better getStaticProps typings
transitive-bullshit Nov 21, 2022
8cd8060
feat: remove react-markdown in favor of SSR markdown processing
transitive-bullshit Nov 21, 2022
3a064d6
feat: add next-auth, prisma models, github and email providers
transitive-bullshit Nov 22, 2022
0951925
feat: add UserMovie model
transitive-bullshit Nov 22, 2022
7a5bc3e
feat: update next v13.0.5-canary.4
transitive-bullshit Nov 22, 2022
1820792
feat: bump @vercel/og
transitive-bullshit Nov 22, 2022
7248752
feat: re-enable swcMinify
transitive-bullshit Nov 22, 2022
47db779
feat: change domain for preview branch
transitive-bullshit Nov 22, 2022
d68d41b
📡
transitive-bullshit Nov 22, 2022
181a6e0
feat: WIP UserMovie upsert
transitive-bullshit Nov 22, 2022
f95b177
feat: remove memoization due to session
transitive-bullshit Nov 22, 2022
3a5aa49
feat: major refactor into src/ still using pages/
transitive-bullshit Nov 22, 2022
17c9b1a
feat: refactor types to src/
transitive-bullshit Nov 23, 2022
63e99e2
fix: types
transitive-bullshit Nov 23, 2022
123317c
feat: bump next 13.0.5-canary.6
transitive-bullshit Nov 23, 2022
0da28a3
feat: add upsert UserMovie functionality
transitive-bullshit Nov 24, 2022
8a84c63
feat: update next v13.0.5
transitive-bullshit Nov 24, 2022
6409508
feat: add score / rating and remove artificial update UserMovie delay
transitive-bullshit Nov 24, 2022
21bd6c5
😃
transitive-bullshit Nov 24, 2022
03f55aa
feat: WIP add watchlist, searchUserMovies
transitive-bullshit Nov 24, 2022
64e7c3a
feat: fix waitlist and user-movies search
transitive-bullshit Nov 24, 2022
477c718
feat: bump deps
transitive-bullshit Nov 24, 2022
e39ddee
🈚
transitive-bullshit Nov 24, 2022
d6feb4d
feat: make movie URL pathnames pretty; add ava unit tests
transitive-bullshit Nov 24, 2022
db1f9dc
transitive-bullshit Nov 24, 2022
6507ead
chore: re-enable prettier-plugin-sort-imports
transitive-bullshit Nov 24, 2022
4691b49
🏠
transitive-bullshit Nov 24, 2022
e821eb4
feat: add UserMovie to movie details page
transitive-bullshit Nov 25, 2022
692d9cc
feat: WIP add tailwindcss
transitive-bullshit Nov 26, 2022
e4e654f
chore: remove unused deps
transitive-bullshit Nov 26, 2022
6acdb93
feat: WIP add login and signup pages
transitive-bullshit Nov 26, 2022
689423f
feat: update prisma schema for new RT fields
transitive-bullshit Nov 26, 2022
3a846c2
feat: change budget and revenue into strings for overflow
transitive-bullshit Nov 26, 2022
c1d97a6
feat: login flow styling and tailwind work
transitive-bullshit Nov 28, 2022
4a62133
feat: style fixes
transitive-bullshit Nov 28, 2022
acd7a29
feat: fix auth urls
transitive-bullshit Nov 28, 2022
a242503
feat: minor bug fixes
transitive-bullshit Nov 28, 2022
7a353d8
feat: WIP header UserDropdown
transitive-bullshit Nov 28, 2022
c35c3f4
transitive-bullshit Nov 29, 2022
318ee16
feat: update deps
transitive-bullshit Nov 30, 2022
362bd33
feat: add ignore movie button and movie presence animations
transitive-bullshit Dec 1, 2022
9a854ba
transitive-bullshit Dec 1, 2022
6b4449c
feat: add ignoreand watchlist movie buttons
transitive-bullshit Dec 1, 2022
7360a92
feat: disable next/image optimization due to vercel costs
transitive-bullshit Mar 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,25 @@
# @see https://nextjs.org/docs/basic-features/environment-variables for details.
# ------------------------------------------------------------------------------

# prisma database url
# -----------------------------------------------------------------------------
# Prisma database URL (Postgres)
# -----------------------------------------------------------------------------

DATABASE_URL=

# -----------------------------------------------------------------------------
# Authentication (NextAuth.js)
# -----------------------------------------------------------------------------

NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=

GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=

# -----------------------------------------------------------------------------
# Emails (Mailgun)
# -----------------------------------------------------------------------------

MAILGUN_API_KEY=
MAILGUN_DOMAIN=
10 changes: 9 additions & 1 deletion .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
module.exports = {
plugins: [
require('prettier-plugin-tailwindcss'),
require('@trivago/prettier-plugin-sort-imports')
],
singleQuote: true,
jsxSingleQuote: true,
semi: false,
Expand All @@ -7,5 +11,9 @@ module.exports = {
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
trailingComma: 'none'
trailingComma: 'none',
importOrder: ['<THIRD_PARTY_MODULES>', '^(@/(.*)$)', '^[./]'],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
importOrderGroupNamespaceSpecifiers: true
}
27 changes: 0 additions & 27 deletions app/about/page.tsx

This file was deleted.

27 changes: 0 additions & 27 deletions app/genres/[genre]/head.tsx

This file was deleted.

7 changes: 0 additions & 7 deletions app/genres/[genre]/not-found.tsx

This file was deleted.

70 changes: 0 additions & 70 deletions app/genres/[genre]/page.tsx

This file was deleted.

36 changes: 0 additions & 36 deletions app/genres/[genre]/providers.tsx

This file was deleted.

76 changes: 0 additions & 76 deletions app/globals.css

This file was deleted.

5 changes: 0 additions & 5 deletions app/head.tsx

This file was deleted.

60 changes: 0 additions & 60 deletions app/layout.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions app/page.tsx

This file was deleted.

Loading