Skip to content

Commit 06ee386

Browse files
committed
Update outdated references
1 parent 7e58660 commit 06ee386

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ just coverage # Run tests with coverage + open HTML report
3131
just shell # Bash shell in django container
3232
just pyshell # Django shell_plus (IPython)
3333
just run <cmd> # Execute arbitrary command in django container
34-
just loaddata # Load fixtures (democrasite + activitypub)
34+
just loaddata # Load fixtures (democrasite + social)
3535
```
3636

3737
To run a single test file or test:
@@ -49,7 +49,7 @@ Pytest is configured with `--ds=config.settings.test --reuse-db` in `pyproject.t
4949

5050
- **`democrasite/webiscite/`** — Core app. Models: `PullRequest`, `Bill`, `Vote`. Handles GitHub webhooks, voting logic, constitution enforcement, and Celery tasks for auto-merging.
5151
- **`democrasite/users/`** — Custom `User` model (extends `AbstractUser` with single `name` field instead of first/last). OAuth integration.
52-
- **`democrasite/social/`**ActivityPub federation. Models: `Person` (linked to User with keypair), `Follow`.
52+
- **`democrasite/social/`**Social network for short notes. Models: `Person` (linked to User with keypair), `Follow`.
5353

5454
### Configuration
5555

repository_map.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ word or are not familiar with a tool, google it!
7373
│   ├── urls.py // base url definitions for all apps
7474
│   └── wsgi.py // django app definition
7575
├── democrasite // main project directory. Apps live in here.
76-
│   ├── activitypub // social/microblog app
76+
│   ├── social // social/microblog app
7777
│   │   ├── fixtures // sample data for use with the "loaddata" management command
78-
│   │   │   └── activitypub.json
78+
│   │   │   └── social.json
7979
│   │   ├── migrations // database definitions and changes, created by django migration commands
8080
│   │   │   ├── __init__.py
8181
│   │   │   └── 0001_initial.py
@@ -115,7 +115,7 @@ word or are not familiar with a tool, google it!
115115
│   │   │   └── favicons // site icon
116116
│   │   │   └── favicon.ico
117117
│   │   └── js // scripts
118-
│   │   ├── note_interact.js // activitypub
118+
│   │   ├── note_interact.js // social
119119
│   │   ├── person_follow.js //social
120120
│   │   ├── project.js // all apps
121121
│   │   └── vote.js // webiscite
@@ -138,7 +138,7 @@ word or are not familiar with a tool, google it!
138138
│   │   │   ├── signup.html
139139
│   │   │   ├── verification_sent.html
140140
│   │   │   └── verified_email_required.html
141-
│   │   ├── activitypub
141+
│   │   ├── social
142142
│   │   │   ├── snippets // html snippets to include in other templates
143143
│   │   │   │   ├── note_list.html
144144
│   │   │   │   └── note.html

0 commit comments

Comments
 (0)