# spliit
**Repository Path**: trusted-list/spliit
## Basic Information
- **Project Name**: spliit
- **Description**: Free and Open Source Alternative to Splitwise. Share expenses with your friends and family.
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: https://spliit.app
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2026-09-08
- **Last Updated**: 2026-09-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[
](https://spliit.app)
Spliit is a free and open source alternative to Splitwise. You can either use the official instance at [Spliit.app](https://spliit.app), or deploy your own instance:
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fspliit-app%2Fspliit&project-name=my-spliit-instance&repository-name=my-spliit-instance&stores=%5B%7B%22type%22%3A%22postgres%22%7D%5D&)
## Features
- [x] Create a group and share it with friends
- [x] Create expenses with description
- [x] Display group balances
- [x] Create reimbursement expenses
- [x] Progressive Web App
- [x] Select all/no participant for expenses
- [x] Split expenses unevenly [(#6)](https://github.com/spliit-app/spliit/issues/6)
- [x] Mark a group as favorite [(#29)](https://github.com/spliit-app/spliit/issues/29)
- [x] Tell the application who you are when opening a group [(#7)](https://github.com/spliit-app/spliit/issues/7)
- [x] Assign a category to expenses [(#35)](https://github.com/spliit-app/spliit/issues/35)
- [x] Search for expenses in a group [(#51)](https://github.com/spliit-app/spliit/issues/51)
- [x] Upload and attach images to expenses [(#63)](https://github.com/spliit-app/spliit/issues/63)
- [x] Create expense by scanning a receipt [(#23)](https://github.com/spliit-app/spliit/issues/23)
### Possible incoming features
- [ ] Ability to create recurring expenses [(#5)](https://github.com/spliit-app/spliit/issues/5)
- [ ] Import expenses from Splitwise [(#22)](https://github.com/spliit-app/spliit/issues/22)
## Stack
- [Next.js](https://nextjs.org/) for the web application
- [TailwindCSS](https://tailwindcss.com/) for the styling
- [shadcn/UI](https://ui.shadcn.com/) for the UI components
- [Prisma](https://prisma.io) to access the database
- [Vercel](https://vercel.com/) for hosting (application and database)
## Contribute
The project is open to contributions. Feel free to open an issue or even a pull-request!
Join the discussion in [the Spliit Discord server](https://discord.gg/YSyVXbwvSY).
### Contribute financially
Spliit is free, open source, and has no ads. Hosting, database and API costs are
paid for by donations. If you want to help keep it that way, you can:
- π§‘ [Support us on Open Collective](https://opencollective.com/spliit) β recurring or one-time,
with a public and transparent ledger of what comes in and what it is spent on, or
- π [Sponsor me (Sebastien)](https://github.com/sponsors/scastiel).
Contributions of any size are appreciated, and so is simply telling people about
the project.
### Translation
The project's translations are managed using [our Weblate project](https://hosted.weblate.org/projects/spliit/spliit/).
You can easily add missing translations to the project or even add a new language!
Here is the current state of translation:
## Run locally
1. Clone the repository (or fork it if you intend to contribute)
2. Start a PostgreSQL server. You can run `./scripts/start-local-db.sh` if you donβt have a server already.
3. Copy the file `.env.example` as `.env`
4. Run `npm install` to install dependencies. This will also apply database migrations and update Prisma Client.
5. Run `npm run dev` to start the development server
## End-to-end tests
The Playwright suite in `e2e/` drives a real browser against the app running in
Docker, so it exercises the same image users deploy. It needs Docker and a free
port 3000, and nothing else β the stack builds itself from your checkout and
throws its database away afterwards.
```sh
npm run e2e
```
That builds the image, starts app + PostgreSQL from `compose.e2e.yaml`, waits
for `/api/health/readiness`, runs the suite and tears everything down. It never
touches your development stack or `./postgres-data`.
While writing tests it is quicker to keep the stack up:
```sh
npm run e2e:up # build and start, then leave it running
npm run e2e:test -- --ui # iterate (also --headed, --grep, --debug)
npm run e2e:report # open the HTML report of the last run
npm run e2e:down # stop and delete the test database
```
`--ui` opens Playwright's UI mode, where you can pick tests, watch them run and
step through a trace. It does not start the stack itself, so run `npm run e2e:up`
first.
If port 3000 is already taken β by `npm run dev`, for instance β set
`E2E_HOST_PORT` on every command of the session, including the test run:
```sh
E2E_HOST_PORT=3100 npm run e2e # one-shot
E2E_HOST_PORT=3100 npm run e2e:up # or, for the iteration loop
E2E_HOST_PORT=3100 npm run e2e:test -- --ui
E2E_HOST_PORT=3100 npm run e2e:down
```
The same suite runs in GitHub Actions from the **E2E** workflow, which can be
triggered manually and runs automatically on release tags.
## Run in a container
1. Run `npm run build-image` to build the docker image from the Dockerfile
2. Copy the file `container.env.example` as `container.env`
3. Run `npm run start-container` to start the postgres and the spliit2 containers
4. You can access the app by browsing to http://localhost:3000
## Run with Docker compose
This is a sample `docker-compose.yml` file that you can use to deploy this web app.
```yaml
name: spliit
services:
app:
image: ghcr.io/spliit-app/spliit:latest
user: "1000:1000" # change to your user id or remove if you want root
ports:
- "8080:3000/tcp"
environment:
POSTGRES_PRISMA_URL: postgresql://spliit:spliit@database:5432/spliit
POSTGRES_URL_NON_POOLING: postgresql://spliit:spliit@database:5432/spliit
volumes:
- ./app/cache:/usr/app/.next/cache
depends_on:
- database
networks:
- spliit
database:
image: postgres:17.3
user: "1000:1000" # same as above
environment:
POSTGRES_USER: spliit
POSTGRES_PASSWORD: spliit
POSTGRES_DB: spliit
volumes:
- ./database/data:/var/lib/postgresql/data
networks:
- spliit
networks:
spliit:
```
The web app will then be available on your host at http://localhost:8080/.
You can use named volumes in place of bind mounts if you prefer not having
data stored inside local directories.
## Health check
The application has a health check endpoint that can be used to check if the application is running and if the database is accessible.
- `GET /api/health/readiness` or `GET /api/health` - Check if the application is ready to serve requests, including database connectivity.
- `GET /api/health/liveness` - Check if the application is running, but not necessarily ready to serve requests.
## Configuration
Every variable below is read at runtime. For a container deployment, set them in
`container.env` or pass them with `docker run -e`; no rebuild is required, which
means the published image can be configured by whoever runs it.
### Application URL
Set `BASE_URL` to the public URL your instance is reachable at. It is used for
metadata, the sitemap, `robots.txt`, and to accept server actions sent to that
host.
```.env
BASE_URL=https://spliit.example.com
```
Defaults to `http://localhost:3000`.
### Default currency
Set `DEFAULT_CURRENCY_CODE` to pre-select a currency on the new-group form.
```.env
DEFAULT_CURRENCY_CODE=EUR
```
Defaults to `USD`.
### Migrating from the `NEXT_PUBLIC_*` variables
Earlier versions used `NEXT_PUBLIC_`-prefixed variables for the settings above
and for the opt-in feature flags below. Next.js **inlines those into the app at
build time**, so in a prebuilt image β like the published one β they are frozen
at whatever the release build used and setting them at runtime does nothing. The
runtime variables replace them:
| Old (build-time) | New (runtime) |
| -------------------------------------- | -------------------------- |
| `NEXT_PUBLIC_BASE_URL` | `BASE_URL` |
| `NEXT_PUBLIC_DEFAULT_CURRENCY_CODE` | `DEFAULT_CURRENCY_CODE` |
| `NEXT_PUBLIC_ENABLE_EXPENSE_DOCUMENTS` | `ENABLE_EXPENSE_DOCUMENTS` |
| `NEXT_PUBLIC_ENABLE_RECEIPT_EXTRACT` | `ENABLE_RECEIPT_EXTRACT` |
| `NEXT_PUBLIC_ENABLE_CATEGORY_EXTRACT` | `ENABLE_CATEGORY_EXTRACT` |
**The old variables still work** β the runtime variant simply takes precedence
when both are set, so there is nothing you have to change immediately. They
remain the right choice if you build your own image and want a setting baked in.
To migrate, drop the `NEXT_PUBLIC_` prefix and set the variable wherever your
container gets its environment.
## Opt-in features
### Expense documents
Spliit offers users to upload images (to an AWS S3 bucket) and attach them to expenses. To enable this feature:
- Follow the instructions in the _S3 bucket_ and _IAM user_ sections of [next-s3-upload](https://next-s3-upload.codingvalue.com/setup#s3-bucket) to create and set up an S3 bucket where images will be stored.
- Update your environments variables with appropriate values:
```.env
ENABLE_EXPENSE_DOCUMENTS=true
S3_UPLOAD_KEY=AAAAAAAAAAAAAAAAAAAA
S3_UPLOAD_SECRET=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
S3_UPLOAD_BUCKET=name-of-s3-bucket
S3_UPLOAD_REGION=us-east-1
```
You can also use other S3 providers by providing a custom endpoint:
```.env
S3_UPLOAD_ENDPOINT=http://localhost:9000
```
### Create expense from receipt
You can offer users to create expense by uploading a receipt. This feature relies on a [vision-capable OpenAI model](https://platform.openai.com/docs/guides/vision) and a public S3 storage endpoint.
To enable the feature:
- You must enable expense documents feature as well (see section above). That might change in the future, but for now we need to store images to make receipt scanning work.
- Subscribe to OpenAI API and get access to a vision-capable model (you might need to buy credits in advance).
- Update your environment variables with appropriate values:
```.env
ENABLE_RECEIPT_EXTRACT=true
OPENAI_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
```
The model defaults to `gpt-5-nano` and can be changed with the optional `OPENAI_MODEL_RECEIPT_EXTRACT` variable β a larger model reads poor-quality photos more reliably, at a higher price per scan.
### Deduce category from title
You can offer users to automatically deduce the expense category from the title. Since this feature relies on a OpenAI subscription, follow the signup instructions above and configure the following environment variables:
```.env
ENABLE_CATEGORY_EXTRACT=true
OPENAI_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
```
The model defaults to `gpt-5-nano` and can be changed with the optional `OPENAI_MODEL_CATEGORY_EXTRACT` variable.
### Using another OpenAI-compatible provider
Both AI features above talk to the official OpenAI API by default. Set the optional `OPENAI_BASE_URL` variable to point them at a self-hosted or alternative provider instead:
```.env
OPENAI_BASE_URL=http://localhost:11434/v1
OPENAI_MODEL_RECEIPT_EXTRACT=name-of-a-vision-model
OPENAI_MODEL_CATEGORY_EXTRACT=name-of-a-text-model
```
Whichever provider you choose has to support the `json_schema` response format ([structured outputs](https://platform.openai.com/docs/guides/structured-outputs)), and the receipt feature additionally needs image input. If a response does not match the expected schema, the app reports that nothing could be extracted rather than filling the form with guesses.
If your environment file was created on Windows, make sure it uses **LF line endings**. A trailing carriage return makes `OPENAI_API_KEY` fail authentication and silently switches feature flags off.
### Analytics
Spliit can report anonymous usage events to an analytics service. **It is disabled by default**: nothing is loaded and nothing is sent unless you select a provider.
Select one with `ANALYTICS_PROVIDER`. The variables are read on the server, so a single Docker image can be configured when the container starts.
#### `console` β see what would be reported
Logs every event to the browser console and sends nothing anywhere. Useful while developing, and the shortest example of what a provider looks like.
```.env
ANALYTICS_PROVIDER=console
```
#### `plausible`
Reports to [Plausible](https://plausible.io), a privacy-friendly, cookie-free analytics service. No extra dependency is installed: the provider is a script tag and a function call.
```.env
ANALYTICS_PROVIDER=plausible
PLAUSIBLE_DOMAIN=your-domain.com
```
For a self-hosted Plausible instance, point at it with `PLAUSIBLE_HOST`:
```.env
PLAUSIBLE_HOST=https://plausible.your-domain.com
```
Ad blockers drop requests to known analytics hosts. To avoid that, serve the script and the event endpoint from your own origin by adding [rewrites](https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites) in `next.config.mjs` and pointing the provider at them:
```.env
PLAUSIBLE_SCRIPT_URL=/js/script.manual.js
PLAUSIBLE_API_URL=/proxy/api/event
```
#### What is reported
Pageviews for a handful of pages, and one event per significant action: creating and updating a group, creating, updating and deleting an expense, attaching a document, scanning a receipt, and exporting expenses.
**Group and expense IDs are never sent.** They are the capability to read someone's group, so `/groups//expenses` is reported as `/groups/[groupId]/expenses`. Anonymization happens in one place, `anonymizePath` in `src/lib/analytics/`, between the call sites and every provider, and the event types forbid properties that are not explicitly declared β so leaking an ID is a compile error rather than a review question.
Pages are tracked explicitly, with ``. A new route reports nothing until someone adds it, which keeps that a deliberate decision.
This is unrelated to the group activity log (the _Activity_ tab), which is stored in your own database and is a product feature rather than analytics.
#### Adding a provider
Providers live in `src/lib/analytics/providers/`. Copy `console.tsx`, then register the new one in three places: `provider-ids.ts`, `registry.ts`, and `config.ts` (to map its environment variables to options). The last two are type-checked against the first, so `npm run check-types` tells you exactly what is missing.
A provider supplies a transport β where events go β and optionally a `Script` component if it needs to load an SDK.
## License
MIT, see [LICENSE](./LICENSE).