
TimeMesh is a user-friendly calendar application to simplify scheduling and event management. TimeMesh was selected in the top 3 out of 60,000 engineers in the Headstarter Fellowship 2024; 500+ users on waitlist.
Features
- Unified Calendar Management 🗓️: Keep track of work, study, and personal schedules with a clear separation between different calendar types.
- Simplicity and Ease of Use ✨: Clean, intuitive interface that streamlines the scheduling process.
- Real-Time Updates 🔔: Instant notifications and updates on events.
- AI Support 🤖: AI capabilities for enhanced scheduling and organization.
- Beta Traction 🚀: Over 1000 users on our waitlist, 90+ calendars, and 100+ events created during beta testing.
- Peak Traction 🚀: 500 active users, 600+ calendars, and 7000+ events created during first month of launch.
This is a Tailwind CSS, React, and Vite project. Follow the steps below to set up your development environment and install the necessary dependencies.
To set up Tailwind CSS and its related packages, run:
npm install -D tailwindcss postcss autoprefixer`
### Install Routing and Icon Packages
For routing and icons, install:
npm install react-router-dom lucide-react
### Install Animation and Utility Packages
For animations and utility functions, install:
npm install react-just-parallax scroll-lock react-intersection-observer framer-motion
### Install Google OAuth
For Google OAuth authentication, install:
npm install @react-oauth/google
### Install Calendar for Dashboard
npm install --save react-big-calendar
-
First you would need to have docker desktop downloaded and opened.
-
Set your .env file using the .env.sample with your own values
-
Run the below commands in the root working directory
i.
python -m venv .venv
for python virtual environmentii.
source .venv/bin/activate
for Mac```source .venv/Scripts/activate``` for Windows to activate the python virtual environment
iii.
docker compose up --build -d
to build all the containers necessary for the application -
docker-compose exec backend python manage.py createsuperuser
will create a admin account for the backend database it will ask you for email and password, (please remember the email and password) *ONLY NEEDS TO BE DONE ONCE -
To access the web app go to docker desktop and click on the 5173:80 port or localhost
** Before closing out be sure to run docker-compose down
to stop the docker containers
docker compose up -d
will build all the containers necessary for the applicationdocker-compose down
will stop the containersdocker-compose down -v
stops containers and removes the volumedocker ps
lists all the docker containers
docker-compose exec backend python manage.py makemigrations users
docker-compose exec backend python manage.py migrate
docker compose exec backend python manage.py createsuperuser
will ask for email and password- when entering password it wont appear in terminal but it is taking the input, be sure to remember the password
"Error: Cannot find module @rollup/rollup-linux-arm64-gnu. npm has a bug related to optional dependencies (git repo url link). Please try npm i again after removing both package-lock.json and node_modules directory."
Fix:
-
Go into frontend/Dockerfile and change: CMD [ "npm", "run", "dev" ] ------------> CMD [ "sleep", "infinity" ]
-
Go into docker desktop and obtain the screen attached to this message
-
Click the EXEC tab below 5173:5173 under the container info
-
Run
ls
after the # in the cml an make sure you have the same cml output as the attached image -
If you see "node_modules" and "package-lock.json" remove these files by running
rm -rf node_modules
rm -rf package-lock.json
-
The reinstall all ReactJS libaries and dependencies with
npm i
-
Click on 5173:5173 and make sure that the web app is not accessible and the react_frontend container is in the running state
-
In local terminal run
docker-compose down
and thendocker-compose up -d --build