Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line numberDiff line numberDiff line change
Expand Up@@ -87,9 +87,6 @@ target/
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
3.13
12 changes: 12 additions & 0 deletions README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -108,6 +108,18 @@ PRETALX__BASE_URL=https://your-pretalx-instance.com
PRETALX__API_TOKEN=your-pretalx-api-token
```

## 🔧 Troubleshooting

### Installation Issues with brotli or psycopg-binary

If you encounter build errors when installing dependencies (particularly with `brotli` or `psycopg-binary`), you may need to install system-level dependencies first:

```bash
sudo apt-get update && sudo apt-get install -y build-essential libpq-dev
```

This installs the necessary build tools and PostgreSQL development libraries required to compile these packages.

## 🎨 Frontend Development

This project uses Tailwind CSS with DaisyUI for styling:
Expand Down