https://github.com/conference-hall/conference-hall
  
  
    Open SaaS platform to manage CFPs 
    https://github.com/conference-hall/conference-hall
  
call-for-papers conference events meetup organizer speaker
        Last synced: 7 months ago 
        JSON representation
    
Open SaaS platform to manage CFPs
- Host: GitHub
 - URL: https://github.com/conference-hall/conference-hall
 - Owner: conference-hall
 - License: other
 - Created: 2021-12-11T12:52:57.000Z (almost 4 years ago)
 - Default Branch: main
 - Last Pushed: 2025-03-30T17:18:02.000Z (7 months ago)
 - Last Synced: 2025-03-30T17:34:19.452Z (7 months ago)
 - Topics: call-for-papers, conference, events, meetup, organizer, speaker
 - Language: TypeScript
 - Homepage: https://conference-hall.io
 - Size: 11.2 MB
 - Stars: 16
 - Watchers: 2
 - Forks: 7
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - Contributing: docs/contributing.md
 - Funding: .github/FUNDING.yml
 - License: LICENSE.md
 - Code of conduct: docs/code-of-conduct.md
 
 
Awesome Lists containing this project
README
          # Conference Hall
**Conference Hall** is an open SaaS platform to manage call for papers and speaker submissions for your conferences and meetups. Any speaker writes a talk once and can submit it to every event of the platform.
https://conference-hall.io
## Sponsors
[
](https://devlille.fr)        [
](https://gdgnantes.com)
## Features
**You are a speaker:**
- ✨ Write the abstract of your talk
- 🚀 Submit your talks to events (meetups and conferences)
- 🤝 Invite co-speakers to your talk
- 🔒 Social login
**You are an event organizer:**
- ❤️ Create your conference or meetup
- 📣 Call for papers opens and closes automatically
- ⚡️ Make it public or private
- 👥 Use teams to share an event between organizers
- 💡 Custom formats and categories for the talks
- 📥 Custom survey for speakers
- 📊 Dashboard and metrics on call for paper and reviews
- ⭐️ Review proposals
- 💬 Discussion between organizers about a proposal
- ✅ Mark proposals as accepted, declined...
- 💌 Publish result to speakers and notify them with emails
- 👌 Get speaker confirmations
- 📅 Build your conference schedule
- 📃 Export the proposals
- 🌍 Some integrations (Slack, API...)
## Development
If you want to contribute and make **Conference Hall** better, read our [Contributing Guidelines](./docs/contributing.md).
### Stack
React / React router v7 / Typescript / Tailwind / HeadlessUI / Conform / Zod / Prisma / Firebase Auth / Mailgun / Express / Postgresql / Redis / BullMQ / Biome / Vitest / Playwright
### Prerequisites
- Docker
- Node 22+
### Getting started
Install dependencies:
```sh
npm install
```
Start Docker image for Postgres DB, Firebase emulators and Mailpit:
```sh
docker compose up
```
If you start **Conference Hall** for the first time, you need to setup the database with the following command :
```shell
npm run db:reset
```
Start the development server:
```sh
npm run dev
```
### Useful commands
#### Reset and seed local DB
```sh
npm run db:reset
```
#### Execute tests
The docker image for Postgres DB, Redis and Firebase emulators MUST be running.
Install Playwright browser for components and e2e tests:
```sh
npx playwright install --with-deps chromium
```
Execute unit and integration tests:
```sh
npm run test
```
Execute end-to-end tests:
```sh
npm run test:e2e
```
#### Execute linting
```sh
npm run lint
```
#### Execute typecript check
```sh
npm run tsc
```
#### Export emulators data
```sh
docker exec -it ch_firebase_emulators sh
firebase --project=conference-hall emulators:export fixtures
```