How to deploy my wasp project to a purchased basic server?
Let's say I bought a hosting service from GoDaddy, will I be able to upload my website after "wasp build"?
wasp build to generate deployable code for the whole app in the .wasp/build/ directory. Note that you won't be able to build the app if you are using SQLite as a database. You'll have to switch to PostgreSQL before deploying to production..wasp/build directory. To run the server in production, deploy this Docker image to your hosting provider and ensure the required environment variables on the provider are correctly set up. The mechanism of setting these up is specific per provider..wasp/build/web-app directory and run the following commands:build/ directory in the directory. Since the app's frontend is just a bunch of static files, you can deploy it to any static hosting provider.wasp build to rebuild your app and repeat the deployment steps.<url_to_wasp_backend>web-appwasp buildcd .wasp/build/web-app
npm install && REACT_APP_API_URL=<url_to_wasp_backend> npm run build