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
185cebd
commit 2053c86
Showing
834 changed files
with
56,543 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
ignore: | ||
- CVE-2015-9284 # Mitigation following https://github.com/omniauth/omniauth/wiki/Resolving-CVE-2015-9284#mitigating-in-rails-applications |
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,90 @@ | ||
version: '3' | ||
|
||
services: | ||
app: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
volumes: | ||
- ../..:/workspaces: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:4000:4000' | ||
- '127.0.0.1:80:3000' | ||
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.3.10 | ||
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 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,26 @@ | ||
#!/bin/bash | ||
|
||
set -e # Fail the whole script on first error | ||
|
||
# Fetch Ruby gem dependencies | ||
bundle config path 'vendor/bundle' | ||
bundle config with 'development test' | ||
bundle install | ||
|
||
# Make Gemfile.lock pristine again | ||
git checkout -- Gemfile.lock | ||
|
||
# Fetch Javascript dependencies | ||
yarn --frozen-lockfile | ||
|
||
# [re]create, migrate, and seed the test database | ||
RAILS_ENV=test ./bin/rails db:setup | ||
|
||
# [re]create, migrate, and seed the development database | ||
RAILS_ENV=development ./bin/rails db:setup | ||
|
||
# Precompile assets for development | ||
RAILS_ENV=development ./bin/rails assets:precompile | ||
|
||
# Precompile assets for test | ||
RAILS_ENV=test NODE_ENV=tests ./bin/rails assets:precompile |
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,50 @@ | ||
name: Build container image | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '*' | ||
jobs: | ||
build-image: | ||
runs-on: ubuntu-latest | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: hadolint/[email protected] | ||
- uses: docker/setup-qemu-action@v2 | ||
- uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to the Github Container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
if: github.event_name != 'pull_request' | ||
|
||
- uses: docker/metadata-action@v4 | ||
id: meta | ||
with: | ||
images: ghcr.io/${{ github.repository_owner }}/mastodon | ||
tags: | | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=edge,branch=main | ||
type=sha,prefix=,format=long | ||
- uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
provenance: false | ||
builder: ${{ steps.buildx.outputs.name }} | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |
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,43 @@ | ||
name: JSON Linting | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths: | ||
- 'package.json' | ||
- 'yarn.lock' | ||
- '.nvmrc' | ||
- '.prettier*' | ||
- '**/*.json' | ||
- '.github/workflows/lint-json.yml' | ||
- '!app/javascript/mastodon/locales/*.json' | ||
|
||
pull_request: | ||
paths: | ||
- 'package.json' | ||
- 'yarn.lock' | ||
- '.nvmrc' | ||
- '.prettier*' | ||
- '**/*.json' | ||
- '.github/workflows/lint-json.yml' | ||
- '!app/javascript/mastodon/locales/*.json' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Install all yarn packages | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Prettier | ||
run: yarn prettier --check "**/*.json" |
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,40 @@ | ||
name: Markdown Linting | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths: | ||
- '.github/workflows/lint-md.yml' | ||
- '.prettier*' | ||
- '**/*.md' | ||
- '!AUTHORS.md' | ||
- 'package.json' | ||
- 'yarn.lock' | ||
|
||
pull_request: | ||
paths: | ||
- '.github/workflows/lint-md.yml' | ||
- '.prettier*' | ||
- '**/*.md' | ||
- '!AUTHORS.md' | ||
- 'package.json' | ||
- 'yarn.lock' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
|
||
- name: Install all yarn packages | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Prettier | ||
run: yarn prettier --check "**/*.md" |
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,45 @@ | ||
name: YML Linting | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths: | ||
- 'package.json' | ||
- 'yarn.lock' | ||
- '.nvmrc' | ||
- '.prettier*' | ||
- '**/*.yaml' | ||
- '**/*.yml' | ||
- '.github/workflows/lint-yml.yml' | ||
- '!config/locales/*.yml' | ||
|
||
pull_request: | ||
paths: | ||
- 'package.json' | ||
- 'yarn.lock' | ||
- '.nvmrc' | ||
- '.prettier*' | ||
- '**/*.yaml' | ||
- '**/*.yml' | ||
- '.github/workflows/lint-yml.yml' | ||
- '!config/locales/*.yml' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Install all yarn packages | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Prettier | ||
run: yarn prettier --check "**/*.{yml,yaml}" |
Oops, something went wrong.