TomCasavant / ugs

ActivityPub server that bridges gaming screenshots
https://ugs.tomkahe.com
MIT License
3 stars 0 forks source link
activitypub fediverse gaming social-media steam steam-api

Untitled Gaming Social (UGS)

ActivityPub platform that bridges game screenshots and achievements (currently just Steam) to the fediverse.

Demo User: @MrPresidentTom@ugs.tomkahe.com

Blog post

Database Setup

Will probably move this to a different documentation file, but for future refence:

```bash
flask --app ugs init-db # Initializes the database with Steam profile information
flask --app ugs db init # Unclear if this needs to be run initially or if it was just needed for the first migration. Will need to look into this.
flask --app ugs db migrate -m "..." # Creates a new migration for the database
flask --app ugs db upgrade # Applies the migration to the database
```