Skip to content

Commit

Permalink
Update dev setup docs for file descriptor issues (Budibase#9920)
Browse files Browse the repository at this point in the history
  • Loading branch information
aptkingston authored Mar 7, 2023
1 parent 5b264d0 commit a946b8e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/DEV-SETUP-DEBIAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,14 @@ So this command will actually run the application in dev mode. It creates .env f

The dev version will be available on port 10000 i.e.

http://127.0.0.1:10000/builder/admin
http://127.0.0.1:10000/builder/admin

### File descriptor issues with Vite and Chrome in Linux
If your dev environment stalls forever, with some network requests stuck in flight, it's likely that Chrome is trying to open more file descriptors than your system allows.
To fix this, apply the following tweaks.

Debian based distros:
Add `* - nofile 65536` to `/etc/security/limits.conf`.

Arch:
Add `DefaultLimitNOFILE=65536` to `/etc/systemd/system.conf`.

0 comments on commit a946b8e

Please sign in to comment.