mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
apply 4dbd146 from https://github.com/jedie/cookiecutter_templates/
This commit is contained in:
parent
a3755a5ae1
commit
376e4f3cac
2 changed files with 10 additions and 7 deletions
|
@ -3,16 +3,16 @@
|
||||||
"id": "django_example_ynh",
|
"id": "django_example_ynh",
|
||||||
"packaging_format": 1,
|
"packaging_format": 1,
|
||||||
"description": {
|
"description": {
|
||||||
"en": "App to demonstrate the integration of a Django project under YunoHost via https://github.com/YunoHost-Apps/django_yunohost_integration"
|
"en": "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
||||||
},
|
},
|
||||||
"version": "0.5.0rc1~ynh1",
|
"version": "0.1.0rc0~ynh1",
|
||||||
"url": "https://github.com/YunoHost-Apps/django_example_ynh",
|
"url": "https://github.com/YunoHost-Apps/django_example_ynh",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"website": "https://github.com/YunoHost-Apps/django_example_ynh",
|
"website": "https://github.com/YunoHost-Apps/django_example_ynh",
|
||||||
"admindoc": "https://github.com/YunoHost-Apps/django_example_ynh",
|
"admindoc": "https://github.com/YunoHost-Apps/django_example_ynh",
|
||||||
"userdoc": "https://github.com/YunoHost-Apps/django_example_ynh",
|
|
||||||
"code": "https://github.com/YunoHost-Apps/django_example_ynh"
|
"code": "https://github.com/YunoHost-Apps/django_example_ynh"
|
||||||
|
"userdoc": "https://github.com/jedie/django-example",
|
||||||
},
|
},
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "django_example_ynh"
|
name = "django_example_ynh"
|
||||||
version = "0.5.0rc1+ynh1"
|
version = "0.1.0rc0~ynh1"
|
||||||
description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
||||||
authors = ["Jens Diemer <django_example_ynh@jensdiemer.de>"]
|
authors = ["Jens Diemer <django_example_ynh@jensdiemer.de>"]
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
|
@ -12,7 +12,7 @@ homepage = "https://github.com/YunoHost-Apps/django_example_ynh"
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.9,<4.0.0" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
|
python = ">=3.9,<4.0.0" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
|
||||||
|
|
||||||
django-example = ">=0.1.0rc0" # https://github.com/jedie/django-example
|
django_example = ">=0.1.0rc0" # https://github.com/jedie/django-example
|
||||||
|
|
||||||
# extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes
|
# extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes
|
||||||
# see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml
|
# see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml
|
||||||
|
@ -63,7 +63,7 @@ log_level = "INFO"
|
||||||
atomic=true
|
atomic=true
|
||||||
profile='black'
|
profile='black'
|
||||||
skip_glob=["*/htmlcov/*","*/migrations/*","*/local_test/*"]
|
skip_glob=["*/htmlcov/*","*/migrations/*","*/local_test/*"]
|
||||||
known_first_party=['django-example']
|
known_first_party=['django_example']
|
||||||
line_length=100
|
line_length=100
|
||||||
lines_after_imports=2
|
lines_after_imports=2
|
||||||
|
|
||||||
|
@ -120,6 +120,9 @@ initial_revision = "da47a1e"
|
||||||
initial_date = 2022-11-06T17:25:53+01:00
|
initial_date = 2022-11-06T17:25:53+01:00
|
||||||
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
|
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
|
||||||
cookiecutter_directory = "yunohost_django_package"
|
cookiecutter_directory = "yunohost_django_package"
|
||||||
|
applied_migrations = [
|
||||||
|
"4dbd146", # 2022-11-06T17:59:58+01:00
|
||||||
|
]
|
||||||
|
|
||||||
[manageprojects.cookiecutter_context.cookiecutter]
|
[manageprojects.cookiecutter_context.cookiecutter]
|
||||||
project_name = "Django Example"
|
project_name = "Django Example"
|
||||||
|
|
Loading…
Add table
Reference in a new issue