-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a865c6
commit d0c7d5c
Showing
5 changed files
with
176 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
*.db-wal | ||
*.db-shm | ||
output.txt | ||
*.dbcnb | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
# Hostname: The hostname of the Flask app `web` container | ||
HOSTNAME=feed.yourdomain.com | ||
# Handle: The handle of the user that the app will use to publish_feed and hydrate post with likes | ||
HANDLE=your-handle.bsky.social | ||
# Password: The password from bsky app passwords | ||
PASSWORD=your-password | ||
# uri: The uri of the newly published feed (obtained after running `python publish_feed.py`) | ||
CHRONOLOGICAL_TRENDING_URI=at://did:plc:abcde... | ||
|
||
# Postgres crediatials used to intialize the database and connect to it | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=your-db-password | ||
POSTGRES_DB=feed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
{ | ||
"HANDLES": [ | ||
"stormlightmemes.bsky.social", | ||
"brotherwisegames.bsky.social" | ||
], | ||
"EXCLUDE_HANDLES": [ | ||
"flintds.bsky.social" | ||
], | ||
"PHRASES": [ | ||
"17th shard", | ||
"bands of mourning", | ||
"brandon sanderson", | ||
"cognitive realm", | ||
"rhythm of war", | ||
"shadows of self", | ||
"sixth of the dusk", | ||
"shadows for silence", | ||
"shadows of silence", | ||
"ember dark", | ||
"emperor's soul", | ||
"isles of the ember dark", | ||
"stormlight archive", | ||
"sunlit man", | ||
"alloy of law", | ||
"hero of ages", | ||
"lost metal", | ||
"way of kings", | ||
"well of ascension", | ||
"tress of the emerald sea", | ||
"wind and truth", | ||
"words of radiance", | ||
"yumi and the nightmare painter", | ||
"shattered planes", | ||
"knight radiant", | ||
"knights radiant", | ||
"journey before destination", | ||
"life before death, strength before weakness", | ||
"dragon steel nexus" | ||
], | ||
"INCLUSIVE_MULTI_TOKENS": [ | ||
"brandon sanderson", | ||
"yumi sanderson", | ||
"vin elend", | ||
"yumi painter", | ||
"shallan adolin", | ||
"kaladin syl", | ||
"kaladin adolin", | ||
"kaladin shallan", | ||
"navani kholin", | ||
"shallan pattern", | ||
"shallan veil", | ||
"shallan radiant", | ||
"vin kelsier", | ||
"kelsier survivor", | ||
"wax wayne marasi", | ||
"steris marasi", | ||
"cryptic spren", | ||
"steris wax", | ||
"szeth nightblood", | ||
"shades threnody", | ||
"threnody hell" | ||
], | ||
"TOKENS": [ | ||
"allomancy", | ||
"bondsmith", | ||
"cosmere", | ||
"dalinar", | ||
"dawnshard", | ||
"dragonsteel", | ||
"dustbringer", | ||
"edgedancer", | ||
"elantris", | ||
"elsecaller", | ||
"stormblessed", | ||
"thaidakar", | ||
"kholin", | ||
"lightweaver", | ||
"mistborn", | ||
"oathbringer", | ||
"sanderlanche", | ||
"sazed", | ||
"shadesmar", | ||
"skybreaker", | ||
"spren", | ||
"stoneward", | ||
"stormlight", | ||
"surgebinding", | ||
"truthwatcher", | ||
"warbreaker", | ||
"willshaper", | ||
"windrunner", | ||
"roshar", | ||
"scadrial", | ||
"taldain", | ||
"voidbringer", | ||
"shardblade", | ||
"shardplate", | ||
"shardbearer", | ||
"feruchemy", | ||
"hemalurgy", | ||
"lerasium", | ||
"atium", | ||
"mistcloak", | ||
"kandra", | ||
"koloss", | ||
"skaa", | ||
"highstorm", | ||
"parshendi", | ||
"urithiru", | ||
"honorblade", | ||
"surgebinder", | ||
"dawnshard", | ||
"worldhopper", | ||
"perpendicularity", | ||
"adonalsium", | ||
"chasmfiend", | ||
"worldbringer", | ||
"allomancer", | ||
"highspren", | ||
"elantrian", | ||
"inkspren", | ||
"honorspren", | ||
"cultivationspren", | ||
"peakspren", | ||
"ashspren", | ||
"luckspren", | ||
"windspren", | ||
"lifespren", | ||
"towerlight", | ||
"voidlight", | ||
"brandosando", | ||
"numuhukumakiaki'ilunamor", | ||
"dsnx24", | ||
"dsnx2024", | ||
"dragonsteelnexus", | ||
"dragonsteelnexus2024" | ||
], | ||
"EXCLUDE_TOKENS": [ | ||
"trump", | ||
"sylvana", | ||
"sylvanna", | ||
"alleria", | ||
"uriele", | ||
"mormon" | ||
] | ||
} |