This commit is contained in:
Zsolt Ero
2023-12-20 14:25:11 +01:00
parent 43186553b2
commit a960d4de8d
6 changed files with 40 additions and 36 deletions

View File

@@ -27,4 +27,3 @@ set_real_ip_from 2c0f:f248::/32;
# use any of the following two
real_ip_header CF-Connecting-IP;
#real_ip_header X-Forwarded-For;

View File

@@ -3,5 +3,4 @@
ruff check --fix .
ruff format .
# https://github.com/soulteary/nginx-formatter
nginx-formatter
find . -type f -name '*.conf' -path '*/nginx*' -exec nginxfmt -v {} +;

View File

@@ -1,7 +1,13 @@
from setuptools import setup
requirements = ['fabric', 'ruff', 'python-dotenv', 'click']
requirements = [
'fabric',
'ruff',
'python-dotenv',
'click',
'nginxfmt',
]
setup(
name='openfreemap',