Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.48 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.48 KB

Warmup

Warmup is a server for warming up an IP address for sending emails, without getting throttled, blocked or blacklisted.

Docker images

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 .

Install pre-requisites for developing

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 of yarn 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.

Work with the application

To concurrently run the server and the client components in watch mode use the following command:

fake build -t Run

Troubleshooting

  • 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 your PATH manually: (e.g. export PATH="$HOME/.dotnet/tools:$PATH" on unix) - related GitHub issue