Update features and integrate all code into vite
This commit is contained in:
parent
cc7702686e
commit
a795d1ad9f
65
.env.example
Normal file
65
.env.example
Normal file
@ -0,0 +1,65 @@
|
||||
# =============================================================================
|
||||
# AVANZACAST - ENVIRONMENT VARIABLES EXAMPLE
|
||||
# =============================================================================
|
||||
|
||||
# =============================================================================
|
||||
# APPLICATION CONFIGURATION
|
||||
# =============================================================================
|
||||
NEXTAUTH_SECRET=your-nextauth-secret-key-here
|
||||
NEXTAUTH_URL=http://localhost:3000
|
||||
|
||||
# =============================================================================
|
||||
# LIVEKIT CONFIGURATION
|
||||
# =============================================================================
|
||||
LIVEKIT_API_KEY=devkey
|
||||
LIVEKIT_API_SECRET=secretsecretsecretsecretsecretsecret
|
||||
# URL pointing to the LiveKit server. (example: `wss://my-livekit-project.livekit.cloud`)
|
||||
LIVEKIT_URL=wss://livekit-server.bfzqqk.easypanel.host
|
||||
|
||||
# =============================================================================
|
||||
# REDIS CONFIGURATION
|
||||
# =============================================================================
|
||||
MEET_REDIS_HOST=192.168.1.19
|
||||
MEET_REDIS_PORT=6379
|
||||
MEET_REDIS_PASSWORD=redispassword
|
||||
|
||||
# =============================================================================
|
||||
# S3/MINIO CONFIGURATION
|
||||
# =============================================================================
|
||||
MEET_BLOB_STORAGE_MODE=s3
|
||||
MEET_S3_SERVICE_ENDPOINT=http://192.168.1.19:9000
|
||||
MEET_S3_ACCESS_KEY=minioadmin
|
||||
MEET_S3_SECRET_KEY=minioadmin
|
||||
MEET_S3_BUCKET=openvidu-appdata
|
||||
MEET_S3_WITH_PATH_STYLE_ACCESS=true
|
||||
|
||||
# =============================================================================
|
||||
# DATABASE CONFIGURATION
|
||||
# =============================================================================
|
||||
# PostgreSQL Database
|
||||
DATABASE_URL=postgresql://username:password@localhost:5432/avanzacast
|
||||
|
||||
# =============================================================================
|
||||
# STREAMING PLATFORMS CONFIGURATION
|
||||
# =============================================================================
|
||||
# YouTube API
|
||||
YOUTUBE_CLIENT_ID=your-youtube-client-id
|
||||
YOUTUBE_CLIENT_SECRET=your-youtube-client-secret
|
||||
|
||||
# Facebook API
|
||||
FACEBOOK_APP_ID=your-facebook-app-id
|
||||
FACEBOOK_APP_SECRET=your-facebook-app-secret
|
||||
|
||||
# Twitch API
|
||||
TWITCH_CLIENT_ID=your-twitch-client-id
|
||||
TWITCH_CLIENT_SECRET=your-twitch-client-secret
|
||||
|
||||
# LinkedIn API
|
||||
LINKEDIN_CLIENT_ID=your-linkedin-client-id
|
||||
LINKEDIN_CLIENT_SECRET=your-linkedin-client-secret
|
||||
|
||||
# =============================================================================
|
||||
# DEVELOPMENT/PRODUCTION SETTINGS
|
||||
# =============================================================================
|
||||
NODE_ENV=development
|
||||
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
||||
47
.env.local
Normal file
47
.env.local
Normal file
@ -0,0 +1,47 @@
|
||||
# =============================================================================
|
||||
# AVANZACAST - LOCAL DEVELOPMENT ENVIRONMENT
|
||||
# =============================================================================
|
||||
|
||||
# =============================================================================
|
||||
# APPLICATION CONFIGURATION
|
||||
# =============================================================================
|
||||
NEXTAUTH_SECRET=dev-secret-key-for-local-development-only
|
||||
NEXTAUTH_URL=http://localhost:3000
|
||||
|
||||
# =============================================================================
|
||||
# LIVEKIT CONFIGURATION
|
||||
# =============================================================================
|
||||
LIVEKIT_API_KEY=devkey
|
||||
LIVEKIT_API_SECRET=secretsecretsecretsecretsecretsecret
|
||||
LIVEKIT_URL=wss://livekit-server.bfzqqk.easypanel.host
|
||||
|
||||
# Public environment variables (accessible from client-side)
|
||||
NEXT_PUBLIC_LIVEKIT_URL=wss://livekit-server.bfzqqk.easypanel.host
|
||||
|
||||
# =============================================================================
|
||||
# REDIS CONFIGURATION
|
||||
# =============================================================================
|
||||
MEET_REDIS_HOST=192.168.1.19
|
||||
MEET_REDIS_PORT=6379
|
||||
MEET_REDIS_PASSWORD=redispassword
|
||||
|
||||
# =============================================================================
|
||||
# S3/MINIO CONFIGURATION
|
||||
# =============================================================================
|
||||
MEET_BLOB_STORAGE_MODE=s3
|
||||
MEET_S3_SERVICE_ENDPOINT=http://192.168.1.19:9000
|
||||
MEET_S3_ACCESS_KEY=minioadmin
|
||||
MEET_S3_SECRET_KEY=minioadmin
|
||||
MEET_S3_BUCKET=openvidu-appdata
|
||||
MEET_S3_WITH_PATH_STYLE_ACCESS=true
|
||||
|
||||
# =============================================================================
|
||||
# DATABASE CONFIGURATION
|
||||
# =============================================================================
|
||||
DATABASE_URL=postgresql://avanzacast:password@localhost:5432/avanzacast_dev
|
||||
|
||||
# =============================================================================
|
||||
# DEVELOPMENT SETTINGS
|
||||
# =============================================================================
|
||||
NODE_ENV=development
|
||||
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
||||
2
.github/copilot-instructions.md
vendored
2
.github/copilot-instructions.md
vendored
@ -25,7 +25,7 @@ AvanzaCast es una plataforma de streaming en vivo similar a StreamYard que permi
|
||||
src/
|
||||
├── app/ # App Router (Next.js 13+)
|
||||
│ ├── auth/ # Páginas de autenticación
|
||||
│ ├── dashboard/ # Dashboard de usuario
|
||||
│ ├── broadcasts/ # Panel de Transmisiones (antes dashboard)
|
||||
│ ├── studio/ # Estudio virtual de streaming
|
||||
│ ├── layout.tsx # Layout principal
|
||||
│ ├── page.tsx # Página de inicio
|
||||
|
||||
45
.gitignore
vendored
45
.gitignore
vendored
@ -1,44 +1,3 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
.yarn/install-state.gz
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
node_modules/
|
||||
dist/
|
||||
.env
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# OS
|
||||
Thumbs.db
|
||||
|
||||
102
.next/app-build-manifest.json
Normal file
102
.next/app-build-manifest.json
Normal file
@ -0,0 +1,102 @@
|
||||
{
|
||||
"pages": {
|
||||
"/_not-found/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/_not-found/page-fc564b58c95850d5.js"
|
||||
],
|
||||
"/layout": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/css/05d8fd0c0109151a.css",
|
||||
"static/chunks/app/layout-fb67c1a4b6d3c07b.js"
|
||||
],
|
||||
"/api/chat/route": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/api/chat/route-246f348baf033bdc.js"
|
||||
],
|
||||
"/api/livekit/rooms/route": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/api/livekit/rooms/route-246f348baf033bdc.js"
|
||||
],
|
||||
"/api/storage/route": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/api/storage/route-246f348baf033bdc.js"
|
||||
],
|
||||
"/api/livekit/token/route": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/api/livekit/token/route-246f348baf033bdc.js"
|
||||
],
|
||||
"/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/619-ba102abea3e3d0e4.js",
|
||||
"static/chunks/239-640162831b5f60b2.js",
|
||||
"static/chunks/app/page-a7ef32a08e56853f.js"
|
||||
],
|
||||
"/studio/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/studio/page-a8eab73b4f623172.js"
|
||||
],
|
||||
"/(protected)/layout": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/619-ba102abea3e3d0e4.js",
|
||||
"static/chunks/app/(protected)/layout-87446f5287aaff08.js"
|
||||
],
|
||||
"/(protected)/dashboard/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/619-ba102abea3e3d0e4.js",
|
||||
"static/chunks/app/(protected)/dashboard/page-64317fcbd8cea1d2.js"
|
||||
],
|
||||
"/(public)/layout": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/app/(public)/layout-246f348baf033bdc.js"
|
||||
],
|
||||
"/(public)/auth/login/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/619-ba102abea3e3d0e4.js",
|
||||
"static/chunks/app/(public)/auth/login/page-9595b634e8180628.js"
|
||||
],
|
||||
"/(public)/auth/register/page": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js",
|
||||
"static/chunks/619-ba102abea3e3d0e4.js",
|
||||
"static/chunks/app/(public)/auth/register/page-01cdf1ebd693c7e4.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
33
.next/build-manifest.json
Normal file
33
.next/build-manifest.json
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
"polyfillFiles": [
|
||||
"static/chunks/polyfills-42372ed130431b0a.js"
|
||||
],
|
||||
"devFiles": [],
|
||||
"ampDevFiles": [],
|
||||
"lowPriorityFiles": [
|
||||
"static/n56Omj8gmP3MNvGLgRPve/_buildManifest.js",
|
||||
"static/n56Omj8gmP3MNvGLgRPve/_ssgManifest.js"
|
||||
],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/4bd1b696-c023c6e3521b1417.js",
|
||||
"static/chunks/255-40634877ae3e8e9d.js",
|
||||
"static/chunks/main-app-30b45b6b07ead2e8.js"
|
||||
],
|
||||
"rootMainFilesTree": {},
|
||||
"pages": {
|
||||
"/_app": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/framework-a6e0b7e30f98059a.js",
|
||||
"static/chunks/main-250c5bd30de1c093.js",
|
||||
"static/chunks/pages/_app-7d307437aca18ad4.js"
|
||||
],
|
||||
"/_error": [
|
||||
"static/chunks/webpack-47455e69b614e04d.js",
|
||||
"static/chunks/framework-a6e0b7e30f98059a.js",
|
||||
"static/chunks/main-250c5bd30de1c093.js",
|
||||
"static/chunks/pages/_error-cb2a52f75f2162e2.js"
|
||||
]
|
||||
},
|
||||
"ampFirstPages": []
|
||||
}
|
||||
1
.next/cache/.previewinfo
vendored
Normal file
1
.next/cache/.previewinfo
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"previewModeId":"44518be9435ac47235ab9ac21b7d9241","previewModeSigningKey":"22e7bbb58d915e574e1b58732a47873203a296515ea192afb305af85c9c9748a","previewModeEncryptionKey":"7475ab593740a6533e661c8997b94162948ac37f7c112faf96fe3f4741ab89f5","expireAt":1763272720572}
|
||||
1
.next/cache/.rscinfo
vendored
Normal file
1
.next/cache/.rscinfo
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"encryption.key":"+/DkBDGulftPjgQXkZWuQ5us8GKmhtTJGQO0V7KjsgY=","encryption.expire_at":1763272720429}
|
||||
1
.next/cache/.tsbuildinfo
vendored
Normal file
1
.next/cache/.tsbuildinfo
vendored
Normal file
File diff suppressed because one or more lines are too long
1
.next/cache/chrome-devtools-workspace-uuid
vendored
Normal file
1
.next/cache/chrome-devtools-workspace-uuid
vendored
Normal file
@ -0,0 +1 @@
|
||||
7bf669c4-7f69-4dee-a55b-617501015189
|
||||
1
.next/cache/eslint/.cache_56cfwa
vendored
Normal file
1
.next/cache/eslint/.cache_56cfwa
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
1
.next/cache/next-devtools-config.json
vendored
Normal file
1
.next/cache/next-devtools-config.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
BIN
.next/cache/webpack/client-development/0.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/0.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/1.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/1.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/10.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/10.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/2.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/2.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/3.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/3.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/4.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/4.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/5.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/5.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/6.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/6.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/7.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/7.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/8.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/8.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/9.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/9.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/index.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/client-development/index.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-development/index.pack.gz.old
vendored
Normal file
BIN
.next/cache/webpack/client-development/index.pack.gz.old
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/0.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/0.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/1.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/1.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/10.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/10.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/11.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/11.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/12.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/12.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/13.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/13.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/14.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/14.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/15.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/15.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/2.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/2.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/3.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/3.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/4.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/4.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/5.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/5.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/6.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/6.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/7.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/7.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/8.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/8.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/9.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/9.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/index.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/index.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/client-production/index.pack.old
vendored
Normal file
BIN
.next/cache/webpack/client-production/index.pack.old
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/edge-server-production/0.pack
vendored
Normal file
BIN
.next/cache/webpack/edge-server-production/0.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/edge-server-production/index.pack
vendored
Normal file
BIN
.next/cache/webpack/edge-server-production/index.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/0.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/0.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/1.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/1.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/10.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/10.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/11.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/11.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/11.pack.gz_
vendored
Normal file
BIN
.next/cache/webpack/server-development/11.pack.gz_
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/2.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/2.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/3.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/3.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/4.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/4.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/5.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/5.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/5.pack.gz_
vendored
Normal file
BIN
.next/cache/webpack/server-development/5.pack.gz_
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/6.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/6.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/6.pack.gz_
vendored
Normal file
BIN
.next/cache/webpack/server-development/6.pack.gz_
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/7.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/7.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/8.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/8.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/9.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/9.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/index.pack.gz
vendored
Normal file
BIN
.next/cache/webpack/server-development/index.pack.gz
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-development/index.pack.gz.old
vendored
Normal file
BIN
.next/cache/webpack/server-development/index.pack.gz.old
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/0.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/0.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/1.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/1.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/10.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/10.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/11.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/11.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/12.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/12.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/2.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/2.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/3.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/3.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/4.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/4.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/5.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/5.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/6.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/6.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/7.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/7.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/8.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/8.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/9.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/9.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/index.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/index.pack
vendored
Normal file
Binary file not shown.
BIN
.next/cache/webpack/server-production/index.pack.old
vendored
Normal file
BIN
.next/cache/webpack/server-production/index.pack.old
vendored
Normal file
Binary file not shown.
6
.next/diagnostics/build-diagnostics.json
Normal file
6
.next/diagnostics/build-diagnostics.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"buildStage": "type-checking",
|
||||
"buildOptions": {
|
||||
"useBuildWorker": "true"
|
||||
}
|
||||
}
|
||||
1
.next/diagnostics/framework.json
Normal file
1
.next/diagnostics/framework.json
Normal file
@ -0,0 +1 @@
|
||||
{"name":"Next.js","version":"15.5.3"}
|
||||
1
.next/package.json
Normal file
1
.next/package.json
Normal file
@ -0,0 +1 @@
|
||||
{"type": "commonjs"}
|
||||
1
.next/react-loadable-manifest.json
Normal file
1
.next/react-loadable-manifest.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
13
.next/server/app-paths-manifest.json
Normal file
13
.next/server/app-paths-manifest.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"/_not-found/page": "app/_not-found/page.js",
|
||||
"/api/chat/route": "app/api/chat/route.js",
|
||||
"/api/livekit/rooms/route": "app/api/livekit/rooms/route.js",
|
||||
"/api/storage/route": "app/api/storage/route.js",
|
||||
"/api/livekit/token/route": "app/api/livekit/token/route.js",
|
||||
"/page": "app/page.js",
|
||||
"/studio/page": "app/studio/page.js",
|
||||
"/(protected)/dashboard/page": "app/(protected)/dashboard/page.js",
|
||||
"/(public)/auth/login/page": "app/(public)/auth/login/page.js",
|
||||
"/(public)/page": "app/(public)/page.js",
|
||||
"/(public)/auth/register/page": "app/(public)/auth/register/page.js"
|
||||
}
|
||||
2
.next/server/app/(protected)/dashboard/page.js
Normal file
2
.next/server/app/(protected)/dashboard/page.js
Normal file
File diff suppressed because one or more lines are too long
1
.next/server/app/(protected)/dashboard/page.js.nft.json
Normal file
1
.next/server/app/(protected)/dashboard/page.js.nft.json
Normal file
@ -0,0 +1 @@
|
||||
{"version":1,"files":["../../../webpack-runtime.js","../../../chunks/586.js","../../../chunks/851.js","../../../chunks/991.js","../../../chunks/348.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
2
.next/server/app/(public)/auth/login/page.js
Normal file
2
.next/server/app/(public)/auth/login/page.js
Normal file
File diff suppressed because one or more lines are too long
1
.next/server/app/(public)/auth/login/page.js.nft.json
Normal file
1
.next/server/app/(public)/auth/login/page.js.nft.json
Normal file
@ -0,0 +1 @@
|
||||
{"version":1,"files":["../../../../webpack-runtime.js","../../../../chunks/586.js","../../../../chunks/851.js","../../../../chunks/991.js","../../../../chunks/348.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
14
.next/server/app/(public)/auth/register/page.js
Normal file
14
.next/server/app/(public)/auth/register/page.js
Normal file
File diff suppressed because one or more lines are too long
1
.next/server/app/(public)/auth/register/page.js.nft.json
Normal file
1
.next/server/app/(public)/auth/register/page.js.nft.json
Normal file
@ -0,0 +1 @@
|
||||
{"version":1,"files":["../../../../webpack-runtime.js","../../../../chunks/586.js","../../../../chunks/851.js","../../../../chunks/991.js","../../../../chunks/348.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
2
.next/server/app/(public)/page.js
Normal file
2
.next/server/app/(public)/page.js
Normal file
File diff suppressed because one or more lines are too long
1
.next/server/app/(public)/page.js.nft.json
Normal file
1
.next/server/app/(public)/page.js.nft.json
Normal file
@ -0,0 +1 @@
|
||||
{"version":1,"files":["../../webpack-runtime.js","../../chunks/586.js","../../chunks/851.js","../../chunks/991.js","../../chunks/515.js","../../chunks/8.js","page_client-reference-manifest.js","../../../../package.json"]}
|
||||
2
.next/server/app/_not-found/page.js
Normal file
2
.next/server/app/_not-found/page.js
Normal file
File diff suppressed because one or more lines are too long
1
.next/server/app/_not-found/page.js.nft.json
Normal file
1
.next/server/app/_not-found/page.js.nft.json
Normal file
@ -0,0 +1 @@
|
||||
{"version":1,"files":["../../webpack-runtime.js","../../chunks/586.js","../../chunks/851.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
1
.next/server/app/api/chat/route.js
Normal file
1
.next/server/app/api/chat/route.js
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user