Warmup is a server for warming up an IP address for sending emails, without getting throttled, blocked or blacklisted.
A pre-built Docker image is available from Docker Hub:
docker run --rm --name warmup -p 8080:80 juselius/warmup
To build a Docker image from source:
docker build -t warmup .
You'll need to install the following pre-requisites in order to build SAFE applications.
- The .NET Core SDK
- FAKE 5 installed as a global tool
- The Yarn package manager (you an also use
npm
but the usage ofyarn
is encouraged). - Node LTS installed for the front end components.
- If you're running on OSX or Linux, you'll also need to install Mono.
To concurrently run the server and the client components in watch mode use the following command:
fake build -t Run
- fake not found - If you fail to execute
fake
from command line after installing it as a global tool, you might need to add it to yourPATH
manually: (e.g.export PATH="$HOME/.dotnet/tools:$PATH"
on unix) - related GitHub issue