KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
ow-mod-db
★ 16
Open GitHub ↗
Self-updating database of Outer Wilds mods
Download README (.md)
Explore Similar Repositories
r2modmac
:
A native macOS/Windows mod manager that uses the official Thunderstore API.
ow-mod-manager
:
Outer Wilds Mod Manager (Legacy)
NomaiText.jl
:
WIP tool to generate procedural writing in the style of the Nomai from Outer Wilds
mixer
:
Mix together different instrumental tracks for a variety of games such as Outer Wilds and Sea of Thieves.
OuterWildsOnline
:
A deprecated Outer Wilds mmo experience, you probably want QSB instead!
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ow-mod-db
?
Download (.md)
# Outer Wilds Mod Database Uses the mod list in [`mods.json` of the `source`](https://github.com/ow-mods/ow-mod-db/blob/source/mods.json) branch, fetches the required data for each mod. That data is then added to [`database.json` in the `master` branch](https://ow-mods.github.io/ow-mod-db/database.json). The process happens automatically every once in a while. The database is deployed to GitHub Pages, since GitHub aggressively caches direct access to the raw file in the repo. So if you want to read from the database, you should use this URL: https://ow-mods.github.io/ow-mod-db/database.json ## [Click here to add your mod to the database](https://github.com/ow-mods/ow-mod-db/issues/new?labels=add-mod&template=add-mod.yml&title=%5BYour+mod+name+here%5D) Or, if you want, you can [edit the mod list yourself and open a PR](https://github.com/ow-mods/outer-wilds-mod-db/edit/source/mods.json) ## How it works GitHub Actions are used to periodically update the database. Check the [Update Releases workflow](https://github.com/ow-mods/ow-mod-db/blob/source/.github/workflows/update-releases.yml) and the [TypeScript code](https://github.com/ow-mods/ow-mod-db/tree/source/scripts) that fetches the data about each mod and generates the database. ## Repository secrets If you fork this repository, you'll need to add a few secrets for everything to work. ### `GH_TOKEN` GitHub token with repo permissions. Format: ``` ghp_XXX ``` ### `GH_USER` User name that owns GH_TOKEN ### `DISCORD_HOOK_URL` Discord web hook URL where all the notifications are sent. Format: ``` https://discord.com/api/webhooks/XXX/YYY ``` ### `DISCORD_MOD_HOOK_URLS` JSON object where keys are the uniqueName of a mod, and the values are the Discord hook urls of the channel where update notifications should be sent to. Format: ```json { "uniqueNameA": "https://discord.com/api/webhooks/XXX/YYY", "uniqueNameB": "https://discord.com/api/webhooks/WWW/ZZZ" } ``` ### DISCORD_MOD_UPDATE_ROLE_ID ID for the Discord role to ping when there's a mod update. ### DISCORD_NEW_MOD_ROLE_ID ID for the Discord role to ping when there's a new mod added to the database. ### CLOUDFLARE_API_TOKEN Cloudflare API token from [here](https://dash.cloudflare.com/profile/api-tokens), with Analytics read permissions.