An open API service indexing awesome lists of open source software.

https://github.com/tomcasavant/ugs

ActivityPub server that bridges gaming screenshots
https://github.com/tomcasavant/ugs

activitypub fediverse gaming social-media steam steam-api

Last synced: 9 days ago
JSON representation

ActivityPub server that bridges gaming screenshots

Awesome Lists containing this project

README

        

# Untitled Gaming Social (UGS)

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

Demo User: [@[email protected]](https://ugs.tomkahe.com/user/MrPresidentTom)

[Blog post](https://tomcasavant.com/untitled-gaming-social/)

### 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
```