Gwain
WWasp
•Created by Gwain on 4/28/2025 in #đŸ™‹questions
Github actions error with wasp in /app
Here is my github action file:
name: Deploy to Fly
on:
push:
branches:
- "master" # Or "main"
jobs:
deploy:
name: Deploy with Wasp
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
# --- Start Debugging Steps ---
- name: List files in root directory
run: ls -la
# This shows if the 'app' directory is present at the top level after checkout
- name: List files in app directory
run: ls -la ./app
# This shows the contents of the 'app' directory
# Check if main.wasp and other expected files/folders (like src) are listed here
# --- End Debugging Steps ---
- name: Deploy to Fly via Wasp
uses: wasp-lang/deploy-action@main
with:
fly-token: ${{ secrets.FLY_TOKEN }}
# node-version: "20.18.0" # Optional
working-directory: ./app # Keep this as your project is in ./app
Getting this error:
Couldn't find wasp project root - make sure you are running this command from a Wasp project.
17 replies
WWasp
•Created by Gwain on 11/22/2024 in #đŸ™‹questions
How to update the FLY CTL version Wasp uses
I need to run Wasp deploy fly deploy with the option --depot="false", but it says it's not a valid option.
5 replies
WWasp
•Created by Gwain on 9/16/2024 in #đŸ™‹questions
Cannot add new field to User entity
Just trying add a simple field called Settings which will be a Json? type, and when I run wasp db migrate-dev I gett an Error 'ext-src/server/scripts/usersSeed.ts(10,9): error TS2741: Property 'settings' is missing in type '{}'
And I dont think I should be messing with the usersSeed.ts ...
13 replies
WWasp
•Created by Gwain on 3/20/2024 in #đŸ™‹questions
Stripe Webhook Server in production
Hi! How should set up Open-Saas on Fly.io to also have my Webhook Server running? Do I need to run another fly machine that is just for the webhook server?
Or can I run it in my same Server instance?
12 replies