🍞 Bun installation Visit bun.sh for more info
curl https://bun.sh/install | bash
If you are using email feeds, you will need to install a version of NodeJS that can run typescript natively. Mkfd creates a Node process for email feeds, as Bun does not currently play well with the popular IMAP packages that are built to run in Node.
bun install
bun run index.ts --passkey=your_passkey_here --cookieSecret=your_cookie_secret_here --encryptionKey=your_encryption_key_here --ssl=true/false
➡️ Access the GUI at http://localhost:5000/
docker build -t mkfd .
docker run -p 5000:5000 -v /local/mount/path:/app/configs -e PASSKEY=your_passkey -e COOKIE_SECRET=your_cookie_secret -e ENCRYPTION_KEY=your_encryption_key -e SSL=true/false mkfd
docker pull tbosk/mkfd:latest
docker run -p 5000:5000 -v /local/mount/path:/app/configs -e PASSKEY=your_passkey -e COOKIE_SECRET=your_cookie_secret -e ENCRYPTION_KEY=your_encryption_key -e SSL=true/false tbosk/mkfd:latest
If you don't supply the keys and cookie secret, the app will prompt you for them (just make sure to run docker with "it" flag to get an interactive shell). Make sure to reuse your encryption key for email feeds.
Mkfd supports email feeds via IMAP. You can use any email provider that supports IMAP, such as Gmail, Yahoo, or Outlook. To set up an email feed, you need to provide the following information:
- Email address: The email address you want to use for the feed.
- IMAP server: The IMAP server address for your email provider. For example, Gmail's IMAP server is
imap.gmail.com
. - IMAP port: The port number for the IMAP server. For Gmail, this is
993
. - IMAP password: The password for your email account. You may need to generate an app password if you have two-factor authentication enabled.
- Folder: The folder you want to monitor for new emails. Ex:
INBOX
.
The encryption key is used to encrypt your password before storing it in the yaml config file. This is important for security reasons, as it prevents anyone from accessing your password in plain text. Make sure to use an encryption key that is at least 16 characters long.
Email feeds do not refresh on intervals. The process runs continuously and updates when a new email is received.
-
Passkey: A passkey is a unique identifier that is used to authenticate requests to the Mkfd API. It is used to ensure that only authorized users can access the API and perform actions such as creating, updating, or deleting feeds.
-
Cookie secret: A cookie secret is a random string that is used to sign cookies in the Mkfd application. It is used to ensure that cookies cannot be tampered with by malicious users. The cookie secret must be at least 32 characters long.
-
Encryption key: An encryption key is a random string that is used to encrypt sensitive data in the Mkfd application. It is used to ensure that sensitive data, such as passwords, cannot be accessed by unauthorized users. The encryption key must be at least 16 characters long.
-
SSL: A boolean value that indicates whether to use SSL for the Mkfd application. Set to true if serving over HTTPS, false if serving over HTTP.
A drill chain is a sequence of CSS selector steps used to navigate through multiple HTML pages to extract a final value (e.g., a link, image, or text). This is useful when data cannot be accessed from a single page or selector alone—such as when a link leads to another page that contains the actual data of interest.
Some websites structure content across multiple layers:
- The first page contains a list of links.
- The second page (linked from the first) contains the actual title, image, or description.
- Drill chains automate that navigation process.
- Add ALL possible RSS fields to models
- Add option for parallel iterators
- Scraping how-to video
- Add feed preview pane
- Store/compare feed data to enable timestamping feed items
- Create dockerfile
- Create Helm chart files
- Create GUI
- Utilities
- HTML stripper
- Source URL wrapper for relative links
- Nested link follower/drilldown functionality for each feed item property
- Adjust date parser logic with overrides from an optional date format input
- Add selector suggestion engine
- Amass contributors