mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-03 20:32:39 +02:00
parent
30dceb25b0
commit
0128ce697d
4 changed files with 4 additions and 4 deletions
|
|
@ -29,7 +29,7 @@ cd server
|
||||||
python server.py
|
python server.py
|
||||||
```
|
```
|
||||||
|
|
||||||
The server will run at `http://localhost:19876`.
|
The server will run at `http://localhost:3001`.
|
||||||
|
|
||||||
### 3. Install the Chrome Extension
|
### 3. Install the Chrome Extension
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
const SERVER_URL = 'http://localhost:19876';
|
const SERVER_URL = 'http://localhost:3001';
|
||||||
const contentHashMap = new Map();
|
const contentHashMap = new Map();
|
||||||
|
|
||||||
let cachedConfig = null;
|
let cachedConfig = null;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
const SERVER_URL = 'http://localhost:19876';
|
const SERVER_URL = 'http://localhost:3001';
|
||||||
|
|
||||||
|
|
||||||
let currentDomain = null;
|
let currentDomain = null;
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,7 @@ app.post('/browse/config', (req, res) => {
|
||||||
return res.json({ status: 'saved', config: data });
|
return res.json({ status: 'saved', config: data });
|
||||||
});
|
});
|
||||||
|
|
||||||
const PORT = 19876;
|
const PORT = 3001;
|
||||||
const RETENTION_DAYS = 7;
|
const RETENTION_DAYS = 7;
|
||||||
const CLEANUP_INTERVAL_MS = 60 * 60 * 1000; // 1 hour
|
const CLEANUP_INTERVAL_MS = 60 * 60 * 1000; // 1 hour
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue