-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google Apps Scripts (backend) #434
Comments
I went through all of the steps written in the readme file. when I tried to deploy it throw an error. please help me to figure out it.
Hash: 46e7353f68dc3a5e49af WARNING in ./src/server/utils.js D:\Appscript\realworld-apps-script-githubRepo\realworld-apps-script-master\src\server\utils.js ✖ 3 problems (0 errors, 3 warnings) @ ./src/server/articles/index.js 2:0-39 16:14-25 ERROR in ./src/server/articles/index.js D:\Appscript\realworld-apps-script-githubRepo\realworld-apps-script-master\src\server\articles\index.js ✖ 2 problems (2 errors, 0 warnings) @ ./src/server/webapp.js 2:0-40 63:17-31 78:15-29 105:15-29 112:15-29 119:15-29 127:15-29 135:15-29 141:15-29 179:17-31 183:17-31 198:15-29 204:15-29 ERROR in ./src/server/auth/index.js D:\Appscript\realworld-apps-script-githubRepo\realworld-apps-script-master\src\server\auth\index.js ✖ 2 problems (2 errors, 0 warnings) @ ./src/server/webapp.js 3:0-33 46:28-39 51:17-28 57:17-28 86:47-58 94:17-28 192:15-26 npm ERR! A complete log of this run can be found in: npm ERR! A complete log of this run can be found in: |
Hello, we moved the addition of new implementations to this website : https://codebase.show/projects/realworld |
@nitingupta-123 I would need more details on what you did. Generally you need to run |
You can use the free tier of google apps scripts to fully power a jwt rest api using google sheets. You can also connect to a databasing using a JDBC connection. It provides POST and GET support. This example should use google sheets as a data storage
Google sheets size limits per https://support.google.com/drive/answer/37603?hl=en. You can only have 5 million cells per sheet (not per document). So if you had 2 columns you could have 2.5 million rows. There are no limits to writing and reading from google sheets using their direct api, external api calls do count against the limit. There is also a cache available.
It probably should be started off from https://github.com/labnol/apps-script-starter
The quota limits are here. https://developers.google.com/apps-script/guides/services/quotas
It would work fine on mobile, but b/c of cors will need to use a proxy such as php proxy or host a nodejs one through https://glitch.com/
If done right shouldn't need to use a google cloud api key
End goal
Here's my source code WIP https://github.com/lastlink/realworld-apps-script/tree/restapi.
The text was updated successfully, but these errors were encountered: