mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
apply manageprojects updates
This commit is contained in:
parent
69d8c64079
commit
a38c2b4e65
2 changed files with 17 additions and 5 deletions
14
.github/workflows/package_linter.yml
vendored
14
.github/workflows/package_linter.yml
vendored
|
@ -1,6 +1,8 @@
|
||||||
name: YunoHost apps package linter
|
name: YunoHost apps package linter
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
# Allow to manually trigger the workflow
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
@ -12,7 +14,17 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.9'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install toml
|
||||||
|
|
||||||
- name: 'Clone YunoHost apps package linter'
|
- name: 'Clone YunoHost apps package linter'
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -4,7 +4,7 @@ version = "0.2.0+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>"]
|
||||||
homepage = "https://github.com/YunoHost-Apps/django_example_ynh"
|
homepage = "https://github.com/YunoHost-Apps/django_example_ynh"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0-or-later"
|
||||||
readme = 'README.md'
|
readme = 'README.md'
|
||||||
|
|
||||||
[tool.poetry.urls]
|
[tool.poetry.urls]
|
||||||
|
@ -17,7 +17,7 @@ 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
|
||||||
django_yunohost_integration = {version = ">=0.5.0rc1", extras = ["ynh"]} # https://github.com/YunoHost-Apps/django_yunohost_integration
|
django_yunohost_integration = {version = ">=0.5.0", extras = ["ynh"]} # https://github.com/YunoHost-Apps/django_yunohost_integration
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
|
@ -128,6 +128,7 @@ applied_migrations = [
|
||||||
"4dbd146", # 2022-11-06T17:59:58+01:00
|
"4dbd146", # 2022-11-06T17:59:58+01:00
|
||||||
"baf1ebc", # 2022-11-30T21:19:10+01:00
|
"baf1ebc", # 2022-11-30T21:19:10+01:00
|
||||||
"44aa620", # 2022-12-21T19:59:39+01:00
|
"44aa620", # 2022-12-21T19:59:39+01:00
|
||||||
|
"b204761", # 2022-12-21T20:25:20+01:00
|
||||||
]
|
]
|
||||||
|
|
||||||
[manageprojects.cookiecutter_context.cookiecutter]
|
[manageprojects.cookiecutter_context.cookiecutter]
|
||||||
|
@ -142,8 +143,7 @@ ynh_app_url = "https://github.com/YunoHost-Apps/django_example_ynh"
|
||||||
bug_tracker_url = "https://github.com/jedie/django-example/issues"
|
bug_tracker_url = "https://github.com/jedie/django-example/issues"
|
||||||
upstream_version = "0.1.0rc0"
|
upstream_version = "0.1.0rc0"
|
||||||
ynh_version = "1"
|
ynh_version = "1"
|
||||||
description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
|
||||||
package_description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
package_description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0-or-later"
|
||||||
_template = "https://github.com/jedie/cookiecutter_templates/"
|
_template = "https://github.com/jedie/cookiecutter_templates/"
|
||||||
_output_dir = "~/repos_ynh/django_example_ynh"
|
_output_dir = "~/repos_ynh/django_example_ynh"
|
||||||
|
|
Loading…
Add table
Reference in a new issue