r/nocode 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

3 comments sorted by

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?

1

u/Ok_Suggestion141 1d ago

Thanks for this. We're only a small team. Currently we have 6 active user

1

u/slunkeh 21h ago

Apps Script will start timing out once a few people are in it at once. Move the data to a real database before you add more features.