- 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
12 lines
213 B
Plaintext
Executable File
12 lines
213 B
Plaintext
Executable File
{
|
|
"lang": "en",
|
|
"accounts": [
|
|
{
|
|
"name": "Example",
|
|
"host": "imap.exmaple.com",
|
|
"user": "example@example.com",
|
|
"pass": "examplepassword",
|
|
"topic": "your-ntfy-topic"
|
|
}
|
|
]
|
|
} |