Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
37 changes: 37 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Git
.git
.gitignore

# Dependencies
node_modules
**/node_modules

# Build outputs
.next
**/dist
build
out

# Local env files
.env
.env.local
.env.*.local

# IDEs and editors
.vscode
.idea
.cursor
*.swp
*.swo

# Project specific
.eslintcache
.npmrc
AGENTS.md
docs
deployment
services/app/Dockerfile

# OS files
.DS_Store
Thumbs.db
4 changes: 2 additions & 2 deletions apps/web/graphql/pages/page-templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ export const homePageTemplate = [
mimeType: "image/jpeg",
size: 113901,
access: "public",
file: "https://d27g932tzd9f7s.cloudfront.net/medialit-service/public/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/main.jpg",
file: "https://cdn.medialit.cloud/medialit-service/p/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/main.jpg",
thumbnail:
"https://d27g932tzd9f7s.cloudfront.net/medialit-service/public/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/thumb.webp",
"https://cdn.medialit.cloud/medialit-service/p/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/thumb.webp",
caption: "",
},
mediaRadius: 2,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
import "./.next/dev/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
3 changes: 0 additions & 3 deletions services/app/.dockerignore

This file was deleted.

Loading