dd8fdeb5ca
The project migrated to Angular 18; Next.js artifacts were still present. Deleted: - next.config.js, next-env.d.ts (.next/ was already gitignored) - public/ (favicons/fonts/images duplicated in src/assets/; not served by Angular) - .env.development, .env.production, .env.sample (Angular uses src/environments/) - src/middleware.ts (Next.js middleware) - src/modules/ (React TSX components — article, auth, profile) - src/utils/ (Next.js api client, iron-session auth, types) - src/config/ (process.env-based constants) - src/generated/ (openapi-typescript generated types) - src/jumps_02.json (only referenced as a commented-out import) - docs/ (empty directories) Updated .gitignore to block .env.* and next.config.js from being re-added.
64 lines
803 B
Plaintext
64 lines
803 B
Plaintext
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
|
|
# Compiled output
|
|
/dist
|
|
/tmp
|
|
/out-tsc
|
|
/bazel-out
|
|
|
|
# Node
|
|
/node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# IDEs and editors
|
|
.idea/
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# Visual Studio Code
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.history/*
|
|
|
|
# Miscellaneous
|
|
/.angular/cache
|
|
.nx/
|
|
.sass-cache/
|
|
/connect.lock
|
|
/coverage
|
|
/libpeerconnection.log
|
|
testem.log
|
|
/typings
|
|
|
|
# e2e
|
|
/e2e/*.js
|
|
/e2e/*.map
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# SonarQube
|
|
.scannerwork/
|
|
sonar.properties
|
|
|
|
**/*.copy.ts
|
|
**/*.copy.scss
|
|
**/*.copy.html
|
|
|
|
# Next.js (legacy, removed)
|
|
.next/
|
|
next-env.d.ts
|
|
next.config.js
|
|
|
|
# Environment files (Angular uses src/environments/*.ts)
|
|
.env
|
|
.env.* |