Run EmailEngine on other platforms like the ARM-based Raspberry Pi.
Step 1. Install Node.js runtime
Get Node.js runtime for your platform from here.
Step 2. Install Redis
Install Redis for your platform as documented here.
Step 3. Download and run EmailEngine
Download and extract application files
$ mkdir emailengine
$ cd emailengine
$ wget https://github.com/postalsys/emailengine/releases/latest/download/source-dist.tar.gz
$ tar xzf source-dist.tar.gz
$ rm source-dist.tar.gz
Prepare configuration by creating a dotenv file with example values (see all configuration options here).
$ echo 'EENGINE_WORKERS=2
EENGINE_REDIS="redis:https://127.0.0.1:6379/8"' > .env
Start the app. Configuration is loaded from the dotenv file
$ node server.js