ALL >> Hardware-Software >> View Article
Getting Started With Open Saas
When building [AI Blog Articles](https://getaiblogarticles.com/) and [Meeting Reminders](https://meeting-reminders.com/), I decided to get started as fast as possible. So I looked for a free boilerplate and stumbled upon Open SaaS, which used YC-backed Wasp. It is a full-stack React + NodeJS + Prisma that takes 8 hours to get started with.
Their documentation is brilliant, and great support over Discord. I decided to list here the full walkthrough on how to set up the development environment so that it is a simple copy-paste for you.
For frontend deployment, I used Netlify (for the generous free package) and the recommended fly.io for server + database (also cheap package).
Run development commands
Start development database:
cd app && wasp start db
View development database in Prisma:
wasp db studio
Start development app:
cd app && wasp start
Start development blog:
cd blog && npm install && npm run dev
Run frontend deployment commands
Locate the folder:
cd .wasp/build/web-app
Install dependencies:
...
... npm install && REACT_APP_API_URL={your-server-URL} npm run build
Deploy preview:
netlify deploy
Deploy to production:
netlify deploy --prod
Every time there is a Wasp app rebuild (with wasp build), it will remove your .wasp/build/ directory. Until the GitHub issue is fixed, you need to update netlify.toml’s publish line to:
publish = ".wasp/build/web-app/build"
Run backend & db deployment commands
Locate the folder:
cd .wasp/build/
Deploy preview:
flyctl deploy --remote-only --config ../../src/shared/fly-server.toml
Every time there is a Wasp app rebuild (with wasp build), it will remove your .wasp/build/ directory. That’s why there is a copy of the file in app/src/shared/.
Run blog deployment commands
Locate the folder:
cd blog
Build the app:
npm run build
Deploy preview:
netlify deploy
Deploy to production:
netlify deploy --prod
Good luck with building, hopefully it will be faster now!
Other projects from the Founder:
- [Tramitit](https://tramitit.com/)
- [FidForward](https://fidforward.com/)
Add Comment
Hardware/Software Articles
1. What Is Dynamics 365 Business Central For Iws?Author: brainbell10
2. Dynamics 365 Chatgpt Integration Methods
Author: brainbell10
3. Ai Agents In Business Central
Author: brainbell10
4. Top 10 Best Laptops For Students In Usa 2026 – Ultimate Buying Guide
Author: BlogGyan
5. Best Petrol Generator Under ₹10,000 & ₹20,000 In India (2026 Guide)
Author: Azam
6. How To Fix Issues With Attachments Not Sending Or Downloading In Sbcglobal Email
Author: Darcy Rose
7. Digital Business Card With Analytics: Turn Every Connection Into Measurable Growth
Author: eConnect Digital Cards
8. Why Hire A Software Development Company For Your Business?
Author: Mobulous Technologies
9. Why Every Business Needs Meet Management Software In 2026
Author: LoyaltyXpert
10. Understanding Appendectomy: Procedure, Recovery & Aftercare
Author: Tota surgicare
11. How Accounting Software Makes Business Operations Easier In Nepal
Author: Dipak Shrestha
12. What Is A Data Center Cooling System? A Complete Beginner’s Guide
Author: adlerconway
13. Ai-powered Hr Solutions – Transforming Human Resource Management
Author: Neuralhr
14. Rethinking Ciam Risk Management: Why Adaptive Authentication Alone Is Not Enough
Author: Mansoor Alam
15. The Rise Of Smart Salons In Hyderabad: How Mobile Apps Are Changing The Beauty Industry
Author: Rithin






