Skip to content

icssc/ZotMeet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Simple, clean, and efficient meeting scheduling app.

Tech Stack

Contributing

Local Development

Prerequisites

Local Setup

  1. Clone this repository locally
  2. Navigate to the root directory and install the dependencies.
    1. cd ZotMeet
    2. pnpm install
  3. Start the development server
    1. pnpm start (run pnpm start --host if you want to access the server from other devices on your network)
  4. The app should be viewable at localhost:5173 by default. Changes to the code will automatically update the page. If you ran pnpm start --host, you can access the app from other devices on your network at host-ip:5173.

Local Database Setup

  1. Go to the Postgres official website and download the database for your specific OS. (Here is more information, if you get stuck)
  2. While running the setup, ensure that pgAdmin is downloaded alongside Postgres itself
  3. Once connected to the Postgres Server, Right click on databases -> create -> database, and name it zotmeet.
  4. In the ZotMeet project root directory,pnpm db:update will generate a migrations folder which contain scripts you can run to update your database schema.
  5. Create a .env file, and set DATABASE_URL=postgres://yourusername:yourpassword@localhost:5432/zotmeet
  6. Using pgAdmin, run all the migration files in order. This can be done using the query tool.

Committing Changes

  • Follow the Conventional Commits specification when writing commit messages.
    • E.g., git commit -m "feat: add this feature"; git commit -m "fix: fix this bug".
  • Keep commits and PRs atomic.
    • A PR should be a single feature or bug fix.
    • A commit should be a single logical change.

Environment Variables

If you need credentials for the .env file, contact the project lead (Minh).

After changes to the .env file, run pnpm run check to update SvelteKit's auto-generated environment variable types.