Add project bootstrap.

This commit is contained in:
Michał Słomkowski 2016-06-09 02:25:29 +02:00
commit 5e42af488b
3 changed files with 23 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# IntelliJ project files
.idea
*.iml
test-files

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# THIS PROJECT IS WORK IN PROGRESS
# nginx config file formatter
Formats *nginx* configuration files.

11
nginxfmt.py Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
import argparse
argparser = argparse.ArgumentParser()
argparser.add_argument("-v", "--verbose", action="store_true", help="show formatted file names")
argparser.add_argument("-b", "--backup-original", action="store_true", help="backup original config file")
argparser.add_argument("config_file", type=argparse.FileType('r'), nargs='+')
args = argparser.parse_args()