Tutor.com auto scheduler and facilitator of billing information. This Web Application allows tutors to schedule their Tutor.com working hours in a very short time, before available hours become unavailable.
- Server side: Node.js, ExpressJS, Puppeteer, SQLite.
- Client side: Handlebars, CSS and JavaScript (Vanilla).
See Download Releases for an executable release of the app (make sure to follow the instructions for browser configuration). Unzip the downloaded file and run the tutor-manager.exe
file. The program might be identified as an unrecognized app by Windows. In that case, just procceed to run it anyways.
You can also get the source code following the next steps:
- Node.js stable version (v18.20.2 or higher).
- NPM stable version.
-
Clone this repo:
git clone https://github.com/leovergaramarq/tutor-manager.git
-
Open a terminal in the cloned repository folder.
-
Install the required dependencies:
npm install
-
Start the project:
npm start
In the first run, you will be prompted for a port number for the server and puppeteer-executable-path for the web scrapping.
Once the server is running, open http://localhost:<port>
in your browser.
In the Login page, enter your Tutor.com credentials. These credentials are stored in the app's local database. You can also validate them before logging in.
Note: When logging out, your credentials are removed from the local database. In that case, the auto-scheduling feature will not apply.
In the Home page, you will find your calendar. Here you can choose the hours you wish to schedule for working, by clicking or by selecting an area. Make sure to select the hours from the desired week and save the changes.
Important: the calendar's Time Zone is the Eastern Time Zone from USA (the same way as the Tutor.com Scheduler).
You will also find the local and Eastern time, as well as a countdown until the scheduling time deadline.
Billing information for the current month. Fields like USD price and Payment per Minute are modifiable.
Customize your preferences. A description of each setting is displayed when hovering the info icon.
Important: For user simplicity, the day and hour to schedule setup are relative to your local Time Zone.
To bundle the project and generate an executable, open a terminal in the source code directory. Then, run the next command:
npm run dist
This process might take up to 2 minutes. It will generate a dist
folder in the project root directory. There, you will find the executable file, as well as the necesary source code folders.
Also, a build
folder will be generated, with the source code converted from ES6 to CommonJS by Babel. This folder can be deleted.