diff --git a/README.md b/README.md
index 69d01453..2f3e8aa0 100644
--- a/README.md
+++ b/README.md
@@ -145,16 +145,6 @@ Edit [mailtrain.nginx](setup/mailtrain.nginx) (update `server_name` directive) a
Edit [mailtrain.conf](setup/mailtrain.conf) (update application folder) and copy it to `/etc/init`
-## Nitrous Quickstart
-
-You can quickly create a free development environment for this Mailtrain project in the cloud on www.nitrous.io:
-
-
-
-
-
-In the IDE, start Mailtrain via `Run > Start Mailtrain` and access your site via `Preview > 3000`.
-
## Cloudron
You can easily install and self-host Mailtrain on the Cloudron to send newsletters from your custom domain:
diff --git a/README.nitrous.md b/README.nitrous.md
deleted file mode 100644
index a26dc3ac..00000000
--- a/README.nitrous.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Setup
-
-Welcome to your Mailtrain project on Nitrous.
-
-## Running the development server:
-
-In the [Nitrous IDE](https://community.nitrous.io/docs/ide-overview), start Mailtrain via "Run > Start Mailtrain".
-
-Now you've got a development server running and can see the output in the Nitrous terminal window. You can open up a new shell or utilize [tmux](https://community.nitrous.io/docs/tmux) to open new shells to run other commands.
-
-## Preview the app
-
-In the Nitrous IDE, open the "Preview" menu and click "Port 3000".
diff --git a/nitrous-post-create.sh b/nitrous-post-create.sh
deleted file mode 100755
index 47841ed5..00000000
--- a/nitrous-post-create.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-export DEBIAN_FRONTEND=noninteractive
-
-sudo apt-add-respository ppa:chris-lea/redis-server
-
-sudo apt-get update
-sudo -E apt-get -q -y install mysql-server pwgen redis-server
-sudo apt-get clean
-
-MYSQL_PASSWORD=`pwgen -1`
-
-mysql -u root -e "CREATE USER 'mailtrain'@'localhost' IDENTIFIED BY '$MYSQL_PASSWORD';"
-mysql -u root -e "GRANT ALL PRIVILEGES ON mailtrain.* TO 'mailtrain'@'%' WITH GRANT OPTION;"
-mysql -u mailtrain --password="$MYSQL_PASSWORD" -e "CREATE database mailtrain;"
-
-cat >> config/production.toml <