forked from glitch-soc/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 5
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
245d907
commit 185cebd
Showing
2,603 changed files
with
114,511 additions
and
55,670 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,51 @@ | ||
{ | ||
"name": "Mastodon on GitHub Codespaces", | ||
"dockerComposeFile": "../compose.yaml", | ||
"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" | ||
} | ||
}, | ||
|
||
"remoteUser": "root", | ||
|
||
"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": "bin/setup", | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
services: | ||
app: | ||
working_dir: /workspaces/mastodon/ | ||
build: | ||
context: .. | ||
dockerfile: .devcontainer/Dockerfile | ||
volumes: | ||
- ..:/workspaces/mastodon:cached | ||
environment: | ||
RAILS_ENV: development | ||
NODE_ENV: development | ||
BIND: 0.0.0.0 | ||
REDIS_HOST: redis | ||
REDIS_PORT: '6379' | ||
DB_HOST: db | ||
DB_USER: postgres | ||
DB_PASS: postgres | ||
DB_PORT: '5432' | ||
ES_ENABLED: 'true' | ||
ES_HOST: es | ||
ES_PORT: '9200' | ||
LIBRE_TRANSLATE_ENDPOINT: http://libretranslate:5000 | ||
# Overrides default command so things don't shut down after the process ends. | ||
command: sleep infinity | ||
ports: | ||
- '127.0.0.1:3000:3000' | ||
- '127.0.0.1:3035:3035' | ||
- '127.0.0.1:4000:4000' | ||
networks: | ||
- external_network | ||
- internal_network | ||
|
||
db: | ||
image: postgres:14-alpine | ||
restart: unless-stopped | ||
volumes: | ||
- postgres-data:/var/lib/postgresql/data | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
networks: | ||
- internal_network | ||
|
||
redis: | ||
image: redis:7-alpine | ||
restart: unless-stopped | ||
volumes: | ||
- redis-data:/data | ||
networks: | ||
- internal_network | ||
|
||
es: | ||
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2 | ||
restart: unless-stopped | ||
environment: | ||
ES_JAVA_OPTS: -Xms512m -Xmx512m | ||
cluster.name: es-mastodon | ||
discovery.type: single-node | ||
bootstrap.memory_lock: 'true' | ||
volumes: | ||
- es-data:/usr/share/elasticsearch/data | ||
networks: | ||
- internal_network | ||
ulimits: | ||
memlock: | ||
soft: -1 | ||
hard: -1 | ||
|
||
libretranslate: | ||
image: libretranslate/libretranslate:v1.6.1 | ||
restart: unless-stopped | ||
volumes: | ||
- lt-data:/home/libretranslate/.local | ||
networks: | ||
- external_network | ||
- internal_network | ||
|
||
volumes: | ||
postgres-data: | ||
redis-data: | ||
es-data: | ||
lt-data: | ||
|
||
networks: | ||
external_network: | ||
internal_network: | ||
internal: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
# Required by ActiveRecord encryption feature | ||
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY=fkSxKD2bF396kdQbrP1EJ7WbU7ZgNokR | ||
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT=r0hvVmzBVsjxC7AMlwhOzmtc36ZCOS1E | ||
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY=PhdFyyfy5xJ7WVd2lWBpcPScRQHzRTNr |
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,77 @@ | ||
name: Bug Report (Web Interface) | ||
description: There is a problem using Mastodon's web interface. | ||
labels: ['status/to triage', 'area/web interface'] | ||
type: Bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Make sure that you are submitting a new bug that was not previously reported or already fixed. | ||
Please use a concise and distinct title for the issue. | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce the problem | ||
description: What were you trying to do? | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Expected behaviour | ||
description: What should have happened? | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Actual behaviour | ||
description: What happened? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Detailed description | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Mastodon instance | ||
description: The address of the Mastodon instance where you experienced the issue | ||
placeholder: mastodon.social | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Mastodon version | ||
description: | | ||
This is displayed at the bottom of the About page, eg. `v4.4.0-alpha.1` | ||
placeholder: v4.3.0 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Browser name and version | ||
description: | | ||
What browser are you using when getting this bug? Please specify the version as well. | ||
placeholder: Firefox 131.0.0 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Operating system | ||
description: | | ||
What OS are you running? Please specify the version as well. | ||
placeholder: macOS 15.0.1 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Technical details | ||
description: | | ||
Any additional technical details you may have. This can include the full error log, inspector's output… | ||
validations: | ||
required: false |
Oops, something went wrong.