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
5 changes: 0 additions & 5 deletions .a.sh

This file was deleted.

10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,23 @@ An event application for Cameroon that helps users find events based on their in
### Setup Instructions

**Install Dependencies**
```sh
pip install .
```
- **With Python:**
```sh
pip install .
```
- **With UV (Faster):** No needed
- **With Docker:** No needed

**Setup**
- **With Python:**
```sh
python place/manage.py makemigrations
python place/manage.py migrate
```
- **With UV (Faster):**
```sh
uv run place/manage.py makemigrations
uv run place/manage.py migrate
```
- **With Docker:** No needed
Expand Down
1 change: 1 addition & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PATH="$PATH:.venv/bin/"
set -ex

.venv/bin/python manage.py collectstatic --noinput
.venv/bin/python manage.py makemigrations --noinput
.venv/bin/python manage.py migrate --noinput

if [ -z "$@" ]; then
Expand Down