├── .do ├── app.yaml └── deploy.template.yaml ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── layout.tsx └── page.tsx ├── next.config.ts ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .next 3 | node_modules 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/README.md -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/app/page.tsx -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjs/deploy-digitalocean/HEAD/tsconfig.json --------------------------------------------------------------------------------