feat: major rewrite
the application is now rewritten in next.js. this commit also adds the ability to see trailers, did you know, more like this, etc. on title page. BREAKING CHANGE: the whole application is rewritten from scratch.
This commit is contained in:
49
.gitignore
vendored
49
.gitignore
vendored
@ -1,21 +1,34 @@
|
||||
#big stuff
|
||||
node_modules/
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# env variables
|
||||
*.env
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# CSS files
|
||||
public/css/*.css
|
||||
public/css/*.css.map
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
#misc stuff
|
||||
fetchers/*
|
||||
!fetchers/movie.js
|
||||
controllers/movieControllers.js
|
||||
routes/movieRoutes.js
|
||||
views/pug/homepage.pug
|
||||
views/pug/movies.pug
|
||||
views/pug/_card.pug
|
||||
utils/constants.js
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
#just dev stuff
|
||||
dev/*
|
||||
|
Reference in New Issue
Block a user