abiroot
WWasp-lang
•Created by abiroot on 11/5/2024 in #🙋questions
I need help in debugging resource exhausted (Too many open files)
I can't start my WASP project unless I do a
ulimit -n 10000
. To wasp db start
. I need to do this in every terminal session I need to run wasp in.
I know if it's working and it's stupid it's not stupid, but still I don't feel comfortable doing it, I feel I'm hacking into the solution instead of tackling the problem and solving it the right way.
Any idea why I keep getting this error?
For context, below is the full error example:
❯ wasp db start
wasp-bin: /Users/x/Projects/WASP/x/app/src/client/fonts/Satoshi/Satoshi-LightItalic.eot: openFile: resource exhausted (Too many open files)15 replies
WWasp-lang
•Created by abiroot on 10/12/2024 in #🙋questions
Load Custom fonts from `src/client/fonts/HossRound`
I added a custom font to the path:
app/src/client/fonts/HossRound/Hoss-Round-Bold.otf
and setup my Tailwindconfig and css to load that font.
Whenever I load the font, vite gives me a 403 error:
The request url "/app/src/client/fonts/HossRound/Hoss-Round-Bold.otf" is outside of Vite serving allow list.
I tried changing my vite config to the below to allow the font:
export default defineConfig({
server: {
open: true,
fs: {
allow: [
path.resolve(__dirname, "../src/client/static/fonts"),
],
},
},
});
But it still failed with the error: app/.wasp/out/web-app/src/index.tsx" is outside of Vite serving allow list.
.
It seems that under the hood Wasp is somewhere setting the fs allow path and not allowing me to change it.13 replies
WWasp-lang
•Created by abiroot on 10/12/2024 in #🙋questions
resource exhausted (Too many open files)
This is not the first time that this happens, for some still unknown reason, when doing any file change, instead of recompiling as it should, my
wasp start
stops and throw a resource exhausted (Too many open files)
error.
I tried wasp clean
but didn't work. My project is totally unusable, any change I do breaks wasp start
It's a haskell error, but I'm not sure why it's happening.10 replies
WWasp-lang
•Created by abiroot on 9/28/2024 in #🙋questions
getDirectoryContents:openDirStream: resource exhausted (Too many open files)
I keep getting this error whenever I do a change to my files.
My public folder is still the default one, I haven't done any major changes.
What could be causing this error?
Below is my
wasp start
log.
11 replies
WWasp-lang
•Created by abiroot on 9/24/2024 in #🙋questions
Standalone .wasp output generation
I'm encountering this problem a lot, where I kind of reach a racing condition.
I declare a function in my operations.ts before declaring it in the main.wasp file first, causing my
wasp start
to break. I'll have to undo my operations.ts changes, declare the Query/Action in the main.wasp, do a wasp start
so it generates the .wasp/out
types, then implement my operations.ts changes.
Not to mention when you forgot a small change in main.wasp
having to do all that again.
Is there a wasp command that only generates the .wasp/out
types?15 replies