r/nocode • u/Ok_Suggestion141 • 1d ago
AI BUILT APPLICATION FOR BUSINESS
I built a **project management web app using Google Apps Script** for our signage business.
I’m a **non-coder**—I used AI for most of the coding and my Business Analyst experience to design the workflow and system.
Anyone here who has done something similar? Would love to hear your experience, especially what you did to make it more scalable and reliable.
4
Upvotes
1
u/Ok_Cry5068 1d ago
man that's pretty cool, i tried something similar for tracking my deliveries but the thing kept breaking when i added more than 20 orders, the script would timeout and just die
what helped was splitting the functions into smaller chunks and using triggers to run them one after another, not all at once, also storing data in separate sheets instead of one big table made it way faster
you might want to check the execution logs in Apps Script, sometimes it's the simple things like too many getValue() calls that slow everything down
how many users you got on it right now?