Set up venv with Django and mysqlclient

This commit is contained in:
Johannes Randerath
2024-05-31 21:53:52 +02:00
parent f7fec88fdb
commit f53219388b
15 changed files with 470 additions and 0 deletions

8
bin/sqlformat Executable file
View File

@@ -0,0 +1,8 @@
#!/home/johannes/code/transport-accessibility/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from sqlparse.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())