- Create .copilotignore and .dockerignore to exclude config files - Add Dockerfile for building the application - Introduce Makefile for Docker commands - Create ReadMe.md with project description and usage instructions - Add project.env for environment variables - Implement example config.json and localization files (en.json, hu.json) - Develop main application logic in main.js with IMAP monitoring and notification - Define package.json with dependencies and scripts
35 lines
418 B
Plaintext
35 lines
418 B
Plaintext
# Node
|
|
node_modules/
|
|
.npm/
|
|
package-lock.json
|
|
|
|
# Build / output
|
|
dist/
|
|
|
|
# Runtime / environment
|
|
.env
|
|
.env.*.local
|
|
|
|
# VS Code
|
|
.vscode/
|
|
!.vscode/settings.json
|
|
!.vscode/extensions.json
|
|
!.vscode/launch.json
|
|
!.vscode/tasks.json
|
|
|
|
# IDEs / editors
|
|
.idea/
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# project files
|
|
config.json
|
|
|
|
# Keep .gitkeep files so empty folders can be tracked
|
|
!**/.gitkeep |