1
0
Fork 0
mirror of synced 2024-06-01 10:09:48 +12:00

Update dev setup docs for file descriptor issues (#9920)

This commit is contained in:
Andrew Kingston 2023-03-07 14:58:58 +00:00 committed by GitHub
parent 5b264d021b
commit a946b8e399

View file

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