diff --git a/README.md b/README.md
index 34359d567cfa2a3c1f7f4dabb8cc6937c9720ed7..97d531f0e63fe349c698202f46b11e6cd205d212 100644
--- a/README.md
+++ b/README.md
@@ -22,9 +22,9 @@ You should deploy your server so it's always running. We recommend [fly.io](http
 
 Next, [install the `flyctl`](https://fly.io/docs/flyctl/installing/) utility. Run `flyctl auth login` to sign into your account.
 
-Now, run `flyctl deploy` from `actual-server`. You should have a running app now!
+Now, run `flyctl launch` from `actual-server`. You should have a running app now!
 
-Whenever you want to update Actual, update the versions of `@actual-app/api` and `@actual-app/web` in `package.json` and deploy again.
+Whenever you want to update Actual, update the versions of `@actual-app/api` and `@actual-app/web` in `package.json` and run `flyctl  deploy`.
 
 **Note:** if you don't want to use fly, we still provide a `Dockerfile` to build the app so it should work anywhere that can compile a docker image.
 
diff --git a/app.js b/app.js
index 31e4f318f9d297c228760553be7786c0bc1fa572..ceb39aff024fb5f843e8d71280c3eb47f508d93b 100644
--- a/app.js
+++ b/app.js
@@ -1,4 +1,3 @@
-require('source-map-support').install();
 const express = require('express');
 const bodyParser = require('body-parser');
 const cors = require('cors');
diff --git a/package.json b/package.json
index 7ef04e97318a812a56d9f0b56b02f0ed6e80ee9d..917653a243fb06bafd359ea7d10c1e0d925a5a1e 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,6 @@
     "express": "^4.16.3",
     "express-response-size": "^0.0.3",
     "node-fetch": "^2.2.0",
-    "source-map-support": "^0.5.21",
     "uuid": "^3.3.2"
   },
   "eslintConfig": {