51 lines
780 B
Markdown
51 lines
780 B
Markdown
# Samey
|
|
|
|
Sam's small image board.
|
|
|
|
## Status
|
|
|
|
Still very much an early WIP.
|
|
|
|
### Features
|
|
|
|
- Image and video posts.
|
|
- Tagging with autocompletion.
|
|
- Post pools.
|
|
- RSS feeds.
|
|
|
|
### Known issues
|
|
|
|
- No way to close tag autocompletion on mobile.
|
|
|
|
### Roadmap
|
|
|
|
- [ ] Logging and improved error handling
|
|
- [ ] Lossless compression
|
|
- [ ] Post selection
|
|
- [ ] Caching
|
|
- [ ] Text media
|
|
- [ ] Improve CSS
|
|
- [ ] Background tasks for garbage collection (dangling tags)
|
|
- [ ] User management
|
|
- [ ] Testing
|
|
- [ ] Migrate to Cot...?
|
|
|
|
## Running
|
|
|
|
### Dependencies
|
|
|
|
- `ffmpeg` (with `ffprobe`)
|
|
|
|
### Development
|
|
|
|
```bash
|
|
bacon serve
|
|
```
|
|
|
|
### Docker Compose
|
|
|
|
```bash
|
|
sqlite3 db.sqlite3 "VACUUM;"
|
|
docker compose up -d
|
|
docker compose run --rm samey add-admin-user -u admin -p "superSecretPassword"
|
|
```
|