aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--package-lock.json6
2 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index cbf8df90..071622eb 100644
--- a/README.md
+++ b/README.md
@@ -46,10 +46,10 @@ $ git clone https://git.sr.ht/~cedric/newspipe
$ cd newspipe/
$ poetry install
$ npm install
-$ cp newspipe/conf/conf.cfg-sample newspipe/conf/conf.cfg
+$ cp instance/production.py instance/development.py
$ poetry shell
-$ python newspipe/manager.py db_create
-$ python newspipe/runserver.py
+$ python manager.py db_create
+$ python runserver.py
* Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
```
diff --git a/package-lock.json b/package-lock.json
index 106e200a..f17279a2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -14,7 +14,7 @@
"resolved": "https://registry.npmjs.org/datatables/-/datatables-1.10.18.tgz",
"integrity": "sha512-ntatMgS9NN6UMpwbmO+QkYJuKlVeMA2Mi0Gu/QxyIh+dW7ZjLSDhPT2tWlzjpIWEkDYgieDzS9Nu7bdQCW0sbQ==",
"requires": {
- "jquery": "3.4.1"
+ "jquery": ">=1.7"
}
},
"datatables.net": {
@@ -22,7 +22,7 @@
"resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.20.tgz",
"integrity": "sha512-4E4S7tTU607N3h0fZPkGmAtr9mwy462u+VJ6gxYZ8MxcRIjZqHy3Dv1GNry7i3zQCktTdWbULVKBbkAJkuHEnQ==",
"requires": {
- "jquery": "3.4.1"
+ "jquery": ">=1.7"
}
},
"datatables.net-bs4": {
@@ -31,7 +31,7 @@
"integrity": "sha512-kQmMUMsHMOlAW96ztdoFqjSbLnlGZQ63iIM82kHbmldsfYdzuyhbb4hTx6YNBi481WCO3iPSvI6YodNec46ZAw==",
"requires": {
"datatables.net": "1.10.20",
- "jquery": "3.4.1"
+ "jquery": ">=1.7"
}
},
"fork-awesome": {
bgstack15