Remove source-map-support

This commit is contained in:
James Long 2022-04-28 22:29:45 -04:00
parent caec05df14
commit 16de8cb91b
3 changed files with 2 additions and 4 deletions

View file

@ -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.

1
app.js
View file

@ -1,4 +1,3 @@
require('source-map-support').install();
const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');

View file

@ -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": {