StoryTime connects readers with people who want to be read to.
Users can generate read requests for specific books and any reader can offer to fulfill that request. The application either helps users coordinate in-person meetups or supports a digital meet up through a video call.
StoryTime was created by @Ruta Reisoglu, @Donny Phan, and @Adrian Kiva as their final project for Lighthouse Labs' web development bootcamp in February 2022.
This was an incredible learning experience for us as junior developers. We are open to continuing to develop this application post-graduation. Specifically, we would like to make the application more rapid on reload, implement some testing with mocha, chai, and jest, and further refine the UI/UX.
Ruta had the first seed of the idea - wanting to use our final project to work on an application to connect people during the pandemic. We then collectively built out the features that now exist.
The front end of this application uses React, is styled in DaisyUI, and is deployed on Netlify. The back end uses Node.js, Express.js, and PostgreSQL. It is deployed to Heroku. The chat component of the application uses websockets.
This project is licensed under GNU General Public License v3.0.
An interactive demo version of the app is deployed on Netlify.
To run the application locally and/or make any changes, follow these steps:
./server
.npm install
..env.example
file within the server
folder as a reference, populate the variables of your .env
file as appropriate for your user credentials.server
folder, execute npm run db:reset
from your command line. You should see printouts indicating the creation of several tables. If you do not, ensure psql is running and you have set the correct permissions for your .env
file.npm start
to serve it locally at the port specified in your .env
file.../client
and execute npm install
followed by npm start
to launch the React front-end of the application. Once it is up, it should automatically load https://localhost:3000
in your default browser.