Make top 10 posts ranking
cargo install diesel_cli --no-default-features --features sqlite-bundled
diesel migration generate <name_of_migration>
diesel migration run diesel migration redo diesel migration revert
- Sync users from provider account
- Update users data on sync
- Collect posts and replies of users created in 24h interval
- Evaluate posts:
- like - 1 point
- comment - 5 points
- repost - 3 points
- quote - 4 points
- Cronjob to update post score on hourly basis
- Cronjob to make a thread with top10 posts
- Don't include to ranking posts within same thread of the same user (Prevent one user to occupy all 10 positions in thread)