Skip to content

Commit fe1086b

Browse files
committed
feat: optimize files
1 parent e019ab6 commit fe1086b

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ target/
8787
profile_default/
8888
ipython_config.py
8989

90-
# pyenv
91-
.python-version
92-
9390
# pipenv
9491
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
9592
# However, in case of collaboration, if having platform-specific dependencies or dependencies

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,18 @@ PRETALX__BASE_URL=https://your-pretalx-instance.com
108108
PRETALX__API_TOKEN=your-pretalx-api-token
109109
```
110110

111+
## 🔧 Troubleshooting
112+
113+
### Installation Issues with brotli or psycopg-binary
114+
115+
If you encounter build errors when installing dependencies (particularly with `brotli` or `psycopg-binary`), you may need to install system-level dependencies first:
116+
117+
```bash
118+
sudo apt-get update && sudo apt-get install -y build-essential libpq-dev
119+
```
120+
121+
This installs the necessary build tools and PostgreSQL development libraries required to compile these packages.
122+
111123
## 🎨 Frontend Development
112124

113125
This project uses Tailwind CSS with DaisyUI for styling:

0 commit comments

Comments
 (0)