Skip to content
Open
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
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,24 @@
DeepLearning SDD Course - Lesson Scripts*.md
scripts.md
agentclinic copy/

# Build artifacts
**/.next/
**/node_modules/
**/out/
**/data/
**/*.db
**/*.db-wal
**/*.db-shm

# Environment
**/.env
**/.env.local
**/.env.*.local

# Logs
**/npm-debug.log*

# TypeScript
**/*.tsbuildinfo
**/next-env.d.ts
44 changes: 40 additions & 4 deletions Video05_Creating_the_Constitution/.gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,47 @@
# Dependencies
/node_modules
/.pnp
.pnp.js

# Next.js build output
/.next
/out
src/.next

# Build artifacts
/tmp
/out-tsc

/node_modules
# SQLite database
/data/
*.db
*.db-wal
*.db-shm

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Debug logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.pnp
.pnp.js

.vscode/*
# OS files
.DS_Store
Thumbs.db

# Editor
.vscode/*
*.swp
*.swo

# TypeScript cache
*.tsbuildinfo
next-env.d.ts

# Misc
*.pem
6 changes: 6 additions & 0 deletions Video05_Creating_the_Constitution/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
5 changes: 5 additions & 0 deletions Video05_Creating_the_Constitution/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {};

export default nextConfig;
Loading