curl -sSL https://get.wasp.sh/installer.sh | sh -s wasp new test cd test wasp db migrate-dev Installing wasp version 0.18.0 (latest). Found an existing installation on the disk, at /Users/ilakovac/.local/share/wasp-lang/0.18.0. Using it instead. Configuring wasp executable at /Users/ilakovac/.local/bin/wasp to use wasp version 0.18.0. ============================================== wasp has been successfully installed! To create your first app, do: - wasp new MyApp Optional: - to install bash completion for wasp, run wasp completion and follow the instructions. 🐝 --- Creating your project from the "basic" template... ------------------------- Created new Wasp app in ./test directory! To run your new app, do: cd test wasp db migrate-dev wasp start Check the README.md for additional guidance! 🐝 --- Compiling wasp project... -------------------------------------------------- [ Wasp ] Starting npm install [ Wasp ] Still installing npm dependencies! [ Wasp ] Installation going great - we'll get there soon! [ Wasp ] The installation is taking a while, but we'll get there! [ Wasp ] Yup, still not done installing. [ Wasp ] We're getting closer and closer, everything will be installed soon! [ Wasp ] Still waiting for the installation to finish? You should! We got too far to give up now! [ Wasp ] You've been waiting so patiently, just wait a little longer (for the installation to finish)... [ Wasp !] npm warn deprecated @lucia-auth/adapter-prisma@4.0.1: This package has been deprecated. Please see https://lucia-auth.com/lucia-v3/migrate. [ Wasp !] npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead [ Wasp !] npm warn deprecated domexception@4.0.0: Use your platform's native DOMException instead [ Wasp !] npm warn deprecated lucia@3.2.2: This package has been deprecated. Please see https://lucia-auth.com/lucia-v3/migrate. [ Wasp !] npm warn deprecated oslo@1.2.1: Package is no longer supported. Please see https://oslojs.dev for the successor project. [ Wasp ] [ Wasp ] added 666 packages, and audited 668 packages in 1m [ Wasp ] [ Wasp ] 206 packages are looking for funding [ Wasp ] run `npm fund` for details [ Wasp ] [ Wasp ] 7 vulnerabilities (2 low, 5 moderate) [ Wasp ] [ Wasp ] To address all issues (including breaking changes), run: [ Wasp ] npm audit fix --force [ Wasp ] [ Wasp ] Run `npm audit` for details. [ Client ] Starting npm install [ Server ] Starting npm install [ Server ] [ Server ] added 153 packages, and audited 154 packages in 5s [ Server ] [ Server ] 30 packages are looking for funding [ Server ] run `npm fund` for details [ Server ] [ Server ] 3 high severity vulnerabilities [ Server ] [ Server ] To address all issues (including breaking changes), run: [ Server ] npm audit fix --force [ Server ] [ Server ] Run `npm audit` for details. [ Client ] [ Client ] added 97 packages, and audited 98 packages in 5s [ Client ] [ Client ] 17 packages are looking for funding [ Client ] run `npm fund` for details [ Client ] [ Client ] found 0 vulnerabilities ✅ --- Successfully completed npm install. ---------------------------------------- 🐝 --- Setting up database... ----------------------------------------------------- [ Db !] Error: P1003 [ Db !] [ Db !] Database `dev.db` does not exist at `/private/tmp/test/.wasp/out/db/./dev.db`. [ Db !] [ Db ] Environment variables loaded from .env [ Db ] Prisma schema loaded from ../db/schema.prisma [ Db ] [ Db ] ✔ Generated Prisma Client (v5.19.1) to ./../../../node_modules/@prisma/client in 42ms [ Db ] ✅ --- Database successfully set up. ---------------------------------------------- 🐝 --- Building SDK... ------------------------------------------------------------ [ Wasp ] > wasp@1.0.0 build [ Wasp ] > tsc && node ./scripts/copy-assets.js [ Wasp ] ✅ --- SDK built successfully. ---------------------------------------------------- ✅ --- Your wasp project has successfully compiled. ------------------------------- 🐝 --- Starting database migration... --------------------------------------------- Environment variables loaded from .env Prisma schema loaded from ../db/schema.prisma Datasource "db": SQLite database "dev.db" at "file:./dev.db" ✔ Enter a name for the new migration: … init Applying migration `20250930122006_init` The following migration(s) have been created and applied from new schema changes: migrations/ └─ 20250930122006_init/ └─ migration.sql Your database is now in sync with your schema. ✅ --- Database successfully migrated. --------------------------------------------