Development Team @ Komma: Essam Sleiman, James Junaidi, Edward Chew, Omid Mogasemi
Komma simplifies the way sales representatives schedule group meetings. Essam Sleiman, James Junaidi, Edward Chew, Omid Mogasemi came together in their freshman year at UC Davis to develop a side project: Komma. Especially due to the remote culture during the pandemic, we noticed meetings were scheduled inefficiently and wanted to solve this problem.
In 2020, the Komma team joined the UC Davis Plasma Startup Accelerator, a 12 week program for students to convert an idea into product.
After the program, we released our application as a Beta, but eventually halted the project as we struggled to find product-market fit. Learned a lot along the process!
-
Install the required node modules. Use npm i to install the node modules required in both the backend and frontend folders.
# install the node modules # first make sure to delete any existing node_modules folders cd .\backend\ npm i cd ..\frontend\ npm i
-
Start up the development server.
# Connect to the backend server cd .\backend\ nodemon server # Start the localhost cd ..\frontend\ npm start