diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-04-29 23:26:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-29 23:26:47 +0900 |
| commit | 09764b909b7843fcc1e143962a9fc1053b4937b7 (patch) | |
| tree | d79405cd3bf0ec52930b7cc80004af69cd431663 /CONTRIBUTING.md | |
| parent | test: Check availability of production build (#10734) (diff) | |
| download | misskey-09764b909b7843fcc1e143962a9fc1053b4937b7.tar.gz misskey-09764b909b7843fcc1e143962a9fc1053b4937b7.tar.bz2 misskey-09764b909b7843fcc1e143962a9fc1053b4937b7.zip | |
enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように (#10717)
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
Diffstat (limited to 'CONTRIBUTING.md')
| -rw-r--r-- | CONTRIBUTING.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b8a20c8078..f6b3804f84 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -165,6 +165,11 @@ pnpm jest -- foo.ts ### e2e tests TODO +## Environment Variable + +- `MISSKEY_CONFIG_YML`: Specify the file path of config.yml instead of default.yml (e.g. `2nd.yml`). +- `MISSKEY_WEBFINGER_USE_HTTP`: If it's set true, WebFinger requests will be http instead of https, useful for testing federation between servers in localhost. NEVER USE IN PRODUCTION. + ## Continuous integration Misskey uses GitHub Actions for executing automated tests. Configuration files are located in [`/.github/workflows`](/.github/workflows). |