forked from glitch-soc/mastodon
-
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.
Merge pull request glitch-soc#2392 from ClearlyClaire/glitch-soc/merg…
…e-upstream Merge upstream changes into glitch-soc
- Loading branch information
Showing
147 changed files
with
3,207 additions
and
930 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
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,49 @@ | ||
{ | ||
"name": "Mastodon on GitHub Codespaces", | ||
"dockerComposeFile": "../docker-compose.yml", | ||
"service": "app", | ||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", | ||
|
||
"features": { | ||
"ghcr.io/devcontainers/features/sshd:1": {} | ||
}, | ||
|
||
"runServices": ["app", "db", "redis"], | ||
|
||
"forwardPorts": [3000, 4000], | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "web", | ||
"onAutoForward": "notify" | ||
}, | ||
"4000": { | ||
"label": "stream", | ||
"onAutoForward": "silent" | ||
} | ||
}, | ||
|
||
"otherPortsAttributes": { | ||
"onAutoForward": "silent" | ||
}, | ||
|
||
"remoteEnv": { | ||
"LOCAL_DOMAIN": "${localEnv:CODESPACE_NAME}-3000.app.github.dev", | ||
"LOCAL_HTTPS": "true", | ||
"STREAMING_API_BASE_URL": "https://${localEnv:CODESPACE_NAME}-4000.app.github.dev", | ||
"DISABLE_FORGERY_REQUEST_PROTECTION": "true", | ||
"ES_ENABLED": "", | ||
"LIBRE_TRANSLATE_ENDPOINT": "" | ||
}, | ||
|
||
"onCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}", | ||
"postCreateCommand": ".devcontainer/post-create.sh", | ||
"waitFor": "postCreateCommand", | ||
|
||
"customizations": { | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": ["EditorConfig.EditorConfig", "webben.browserslist"] | ||
} | ||
} | ||
} |
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
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
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
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
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,4 +1,4 @@ | ||
web: env PORT=3000 RAILS_ENV=development bundle exec puma -C config/puma.rb | ||
sidekiq: env PORT=3000 RAILS_ENV=development bundle exec sidekiq | ||
stream: env PORT=4000 yarn run start | ||
webpack: ./bin/webpack-dev-server --listen-host 0.0.0.0 | ||
webpack: bin/webpack-dev-server |
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
Oops, something went wrong.