Skip to content

Commit

Permalink
更新版本为1.9.1,移除env样例中的引号
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyo committed Oct 7, 2022
1 parent 2012a99 commit 4afae1e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 20 deletions.
17 changes: 9 additions & 8 deletions .env.list
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# https://django-environ.readthedocs.io/en/latest/quickstart.html#usage
# https://docs.djangoproject.com/zh-hans/4.1/ref/settings/
DEBUG="false"
DATABASE_URL="mysql://root:@127.0.0.1:3306/archery"
CACHE_URL="redis://127.0.0.1:6379/0"
DEBUG=false
DATABASE_URL=mysql://root:@127.0.0.1:3306/archery
CACHE_URL=redis://127.0.0.1:6379/0

# https://django-auth-ldap.readthedocs.io/en/latest/
ENABLE_LDAP="false"
AUTH_LDAP_ALWAYS_UPDATE_USER="true"
AUTH_LDAP_USER_ATTR_MAP="username=cn,display=displayname,email=email"
ENABLE_LDAP=false
AUTH_LDAP_ALWAYS_UPDATE_USER=true
AUTH_LDAP_USER_ATTR_MAP=username=cn,display=displayname,email=email

# https://docs.djangoproject.com/en/4.0/ref/settings/#csrf-trusted-origins
CSRF_TRUSTED_ORIGINS="http://127.0.0.1:9123"
CSRF_TRUSTED_ORIGINS=http://127.0.0.1:9123

# https://django-q.readthedocs.io/en/latest/configure.html#
Q_CLUISTER_WORKERS=4
Q_CLUISTER_TIMEOUT=60
Q_CLUISTER_SYNC="false"
Q_CLUISTER_SYNC=false
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ body:
attributes:
label: 版本
description: 请告诉我们你正在使用的Archery版本
placeholder: 1.9.0
placeholder: 1.9.1
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion archery/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = (1, 9, 0)
version = (1, 9, 1)
display_version = ".".join(str(i) for i in version)
2 changes: 1 addition & 1 deletion src/charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: hhyo/archery
tag: v1.9.0
tag: v1.9.1
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down
17 changes: 9 additions & 8 deletions src/docker-compose/.env
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
NGINX_PORT=9123

# https://django-environ.readthedocs.io/en/latest/quickstart.html#usage
# https://docs.djangoproject.com/zh-hans/4.1/ref/settings/
DEBUG="false"
DATABASE_URL="mysql://root:123456@mysql:3306/archery"
CACHE_URL="redis://redis:6379/0?PASSWORD=123456"
DEBUG=false
DATABASE_URL=mysql://root:123456@mysql:3306/archery
CACHE_URL=redis://redis:6379/0?PASSWORD=123456

# https://docs.djangoproject.com/en/4.0/ref/settings/#csrf-trusted-origins
CSRF_TRUSTED_ORIGINS="http://127.0.0.1:9123"
CSRF_TRUSTED_ORIGINS=http://127.0.0.1:9123

# https://django-auth-ldap.readthedocs.io/en/latest/
ENABLE_LDAP="false"
AUTH_LDAP_ALWAYS_UPDATE_USER="true"
AUTH_LDAP_USER_ATTR_MAP="username=cn,display=displayname,email=email"
ENABLE_LDAP=false
AUTH_LDAP_ALWAYS_UPDATE_USER=true
AUTH_LDAP_USER_ATTR_MAP=username=cn,display=displayname,email=email

# https://django-q.readthedocs.io/en/latest/configure.html#
Q_CLUISTER_WORKERS=4
Q_CLUISTER_TIMEOUT=60
Q_CLUISTER_SYNC="false"
Q_CLUISTER_SYNC=false

2 changes: 1 addition & 1 deletion src/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
- "./inception/config.toml:/etc/config.toml"

archery:
image: hhyo/archery:v1.9.0
image: hhyo/archery:v1.9.1
container_name: archery
restart: always
ports:
Expand Down

0 comments on commit 4afae1e

Please sign in to comment.