Luttaka is an open source application to manage tickets, networking and content at events. You can either use the official instance at luttaka.com, or deploy your own instance.
- Tickets
- Assign tickets to others
- Show QR-code during check-in
- Networking
- List participants
- Search for participants
- Mark favourites
- Content
- List companies
- Search for companies
- Mark favourites
- Event program
- Settings
- Edit participant profile
- Edit company profile
- Tickets
- Generate tickets
- Assign tickets that have been bought
- Print participant label
- Check-in participant (scan QR-code)
- Networking
- Edit participant information
- Hide participant
- Content
- Edit company information
- Hide company
- Edit event program
- Settings
- Manage admin permissions
- Logs
- Personalized agenda
- Calendar integration
- Speaker profiles
- Interactive maps
- In-app messaging
- Matchmaking
- Company showcase section
- Rating system for participants to provide feedback to companies
- Voting system
- Event announcements
- Live updates
- Interactive features for participants to ask questions during sessions.
- Polls for participant engagement and feedback.
- Details about exhibitors, their products, and booth locations.
- QR code scanner for quick access to exhibitor information
- Recognition for event sponsors with logos and descriptions.
- Special sections for sponsor activities or presentations.
- Social media integration
- Document repository
- Event analytics
- Emergency information
- Crypto art wallet
- Next.js for the web application
- TailwindCSS for the styling
- Shadcn/UI for the UI components
- Clerk for authentication
- Drizzle to access the database
- Flowcore for data infrastructure
The project is open to contributions. Feel free to open an issue or even a pull-request! You can read mode about our contribution guidelines in here.
If you have any questions, concerns, or suggestions, please reach out to us through one of the following channels:
To run the application locally, there are a couple of things that you need to have installed:
In order to run the project, you will need to have Node.js installed. We recommend installing it through nvm.
You will need Node.js version 20.11.0
or higher.
We use yarn as our package manager. You can install it by running npm install -g yarn
.
We utilise docker to run the Postgres database locally. You can install Docker Desktop from here. This is not a requirement, but we recommend always running a database in a container - and as such, we assume that you have Docker installed in the instructions below.
Because the app uses Flowcore as its backend, you will need to set up a free account at Flowcore. You can read up on the basics here
To improve the development experience, we use the Flowcore CLI. This tool is used for both scaffolding the project on your flowcore account, as well as stream the data from flowcore to your local database. Run the following to install the flowcore cli:
npm install -g @flowcore/cli
The application uses Clerk for authentication. Therefore, you need to create an account and create a new Clerk application, followed by obtaining the environment credentials that connects this project to your clerk application.
Your tenant is part of the url when you go to your organization in the Flowcore Platform. For example, if you go to https://flowcore.io/flowcore
, then flowcore
is your tenant.
You can also see the tenant where you select between your active organizations in the top left corner of the UI.
- Clone the repository
- Scaffold the project into your flowcore account:
To run the application locally, you will need to create the datacore and scenarios required for the application to work. You can use the Flowcore CLI to create the datacore and scenarios, or you can use the Flowcore Platform to create them manually.
then copy the flowcore.local.example.yaml
file to flowcore.local.yaml
and fill in the missing information. Then you
can run the following command to spin up an environment for development:
yarn flowcore:dev
this will create the required resources in the Flowcore Platform, inside your tenant.
Requires the Flowcore CLI version 2.5.0 or higher. Production can be created with
yarn flowcore:prod
The command that is run under the hood for dev isflowcore create -f flowcore.yaml -f flowcore.local.yaml
-
Run
yarn
to install the dependencies -
Start a PostgreSQL server. You can run
yarn docker:db
(requires Docker) -
Copy the file
.env.example
as.env
and fill in the missing information -
Add the two environmental variables
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
andCLERK_SECRET_KEY
to the.env
file. You can find the instructions here. -
Run
yarn db:push
to create the database tables: Because of how Flowcore works, we do not need to consider database migrations. The databases are purely populated from the flowcore platform, hence why we can wipe the database whenever we want to make a change with no worry. -
Run
yarn dev
to start the development server -
Run
yarn local:stream -s now
to start streaming data from Flowcore to your local instance -
You can access the app by browsing to http://localhost:3000
The first user to login gets admin privileges.
Note: The
-s now
flag is used to stream from now on. If you want to stream from a specific time, you can use the-s 1d
flag. Consult the flowcore docs for more information.
Note: The
local:stream
command uses theflowcore.local.development.yaml
file to configure what streams to start and where to send the events for each stream. You can read more about the configuration here
The license is MIT. You can read more about it here