wasp
wasp copied to clipboard
The fastest way to develop full-stack web apps with React & Node.js.
### Description Modifies how environment variables are parsed to avoid JSON parsing errors. Currently, variable parsing calls `show value`, but the show function in Haskell automatically adds quotes around strings...
This PR upgrade Wasp Studio: - [x] Replaces `ts-node` with `tsx` (dev mode was broken, so I went with `tsx` which has a watch mode so I can remove `nodemon`)...
Keep in mind that open saas and also most of the other starter are in separate repos from the `wasp` repo. But there should be GA mechanism for cross-repo triggering...
The way we parse and output the values in `.env.server` is broken. It prevents users from customizing the PgBoss options via the `PG_BOSS_NEW_OPTIONS` env variables. Based on this [user report](https://discord.com/channels/686873244791210014/1384260102973820929/1384260102973820929)....
Motivated by this issue: https://github.com/wasp-lang/wasp/issues/2846 Currently we ask users to pass JSON via env variables to set up PgBoss which is not the best DX. It's also fragile since the...
On this page: https://wasp.sh/docs/advanced/web-sockets#websocketfn-function We tell users to get the username like this: ```ts import { getFirstProviderUserId } from 'wasp/auth' // ... const username = getFirstProviderUserId(socket.data.user) ?? 'Unknown' ``` But......
### Description Fixes #2594 by adding a script to generate an llms.txt docs and blog overview, as well as an llms-full.txt concatenated version of our entire docs. ### Select what...
Currently the `wasp-app-runner` is located in the root of the `wasp` repository. This makes it hard to reuse outside of `wasp` repository, and makes it hard for wasp users to...
Fixes #2731 Gives more explanation about e2e tests in our `waspc`'s `README.md`. Reminds about e2e tests in PR template. Removed `dist` folders from golden tests. The changes can actually be...
