Remove source-map-support
This commit is contained in:
parent
caec05df14
commit
16de8cb91b
3 changed files with 2 additions and 4 deletions
|
@ -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.
|
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.
|
**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
1
app.js
|
@ -1,4 +1,3 @@
|
||||||
require('source-map-support').install();
|
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const bodyParser = require('body-parser');
|
const bodyParser = require('body-parser');
|
||||||
const cors = require('cors');
|
const cors = require('cors');
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
"express": "^4.16.3",
|
"express": "^4.16.3",
|
||||||
"express-response-size": "^0.0.3",
|
"express-response-size": "^0.0.3",
|
||||||
"node-fetch": "^2.2.0",
|
"node-fetch": "^2.2.0",
|
||||||
"source-map-support": "^0.5.21",
|
|
||||||
"uuid": "^3.3.2"
|
"uuid": "^3.3.2"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
|
|
Loading…
Reference in a new issue