Google-Meet-Scheduler
Google-Meet-Scheduler copied to clipboard
Won't execute meet even after scheduling the time
Additionally, can you plz specify the time/schedule format, i followed the png in the repo. P.S.: Pls ignore the wrong date given on the screenshot, I had changed it correctly later. Also did configure the EMail and Password. Still didn't work.
You just have to choose the future time and date like
I have used Date.now()
which will take your local device time to calculate it.
Ok, But I was not able to open the Calendar section in the application. I used the commands to setup: npm install npm build npm start
Its a request, but can you add some more instructions as to how to deploy it locally? Thank you very much
I was busy lately, I will improve the documentation and create a demo video shortly.
Thank You so much, I really appreciate your work!
The calendar section is not showing in Firefox browser.
Its because of datetime-local
attribute used in 'startDate' and 'endDate' isn't supported by Firefox.
The calendar section is not showing in Firefox browser. Its because of
datetime-local
attribute used in 'startDate' and 'endDate' isn't supported by Firefox.
Should I use Chrome then? Also I'm working on Ubuntu 18.04.
I first checked it out in Firefox, the date picker wasn't working. But, works great in Chrome and Edge too.
I first checked it out in Firefox, the date picker wasn't working. But, works great in Chrome and Edge too.
Thanks for the input, I tried the app on Windows 10, Chrome and it worked perfectly fine, just needed to ensure I had npm i puppeteer
installed.
Seems it currently does not support Ubuntu at this point of time. (Because of some issues related to the support for fsevents in Linux)
To run on Firefox you may have to install puppeteer-firefox and tweak the GoogleMeet.js Script a little bit.
Thanks for the info @CrazyCoder009 @samadritsarkar2 Updated Readme.
Okay, I just realized one of the reason why this app can't be deployed on Heroku is because heroku servers are all based on linux (I'm guessing ubuntu or other debian).
Hi @CrazyCoder009 Actually you can use puppeteer on Heroku and Linux too. You can see in #1 that I deployed it on Heroku using a puppeteer bundle pack. The same thing can also be used in local Linux machine https://github.com/puppeteer/puppeteer/issues/3443
Hi @CrazyCoder009 Actually you can use puppeteer on Heroku and Linux too. You can see in #1 that I deployed it on Heroku using a puppeteer bundle pack. The same thing can also be used in local Linux machine https://github.com/puppeteer/puppeteer/issues/3443
Okay Thanks a lot @AmanRaj1608 . I'll check back and let you know