Skip to content

Commit

Permalink
Merge pull request #4975 from pixelfed/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
dansup committed Mar 5, 2024
2 parents 1251bf5 + b1cdf44 commit 23f7b74
Show file tree
Hide file tree
Showing 66 changed files with 4,024 additions and 1,017 deletions.
2 changes: 1 addition & 1 deletion .ddev/commands/redis/redis-cli
Expand Up @@ -4,4 +4,4 @@
## Usage: redis-cli [flags] [args]
## Example: "redis-cli KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version"

redis-cli -p 6379 -h redis $@
exec redis-cli -p 6379 -h redis "$@"
38 changes: 30 additions & 8 deletions .dockerignore
@@ -1,8 +1,30 @@
data
Dockerfile
contrib/docker/Dockerfile.*
docker-compose*.yml
.dockerignore
.git
.gitignore
.env
.DS_Store
/.bash_history
/.bash_profile
/.bashrc
/.composer
/.env
/.env.dottie-backup
/.git
/.git-credentials
/.gitconfig
/.gitignore
/.idea
/.vagrant
/bootstrap/cache
/docker-compose-state/
/Homestead.json
/Homestead.yaml
/node_modules
/npm-debug.log
/public/hot
/public/storage
/public/vendor/horizon
/storage/*.key
/storage/docker
/vendor
/yarn-error.log

# Exceptions - these *MUST* be last
!/bootstrap/cache/.gitignore
!/public/vendor/horizon/.gitignore
18 changes: 18 additions & 0 deletions .editorconfig
Expand Up @@ -7,3 +7,21 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{yml,yaml}]
indent_style = space
indent_size = 2

[*.{sh,envsh,env,env*}]
indent_style = space
indent_size = 4

# ShellCheck config
shell_variant = bash # like -ln=bash
binary_next_line = true # like -bn
switch_case_indent = true # like -ci
space_redirects = false # like -sr
keep_padding = false # like -kp
function_next_line = true # like -fn
never_split = true # like -ns
simplify = true

0 comments on commit 23f7b74

Please sign in to comment.