1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

tons of stuff

This commit is contained in:
Bastian Venthur
2018-07-14 22:02:54 +02:00
parent 4de6909e93
commit afe4173c40
8 changed files with 86 additions and 26 deletions

15
sg/__main__.py Normal file
View File

@@ -0,0 +1,15 @@
import logging
from sg import sg
def main():
logging.basicConfig(level=logging.DEBUG,
format="%(levelname)s\t%(message)s")
sg.prepare_site()
sg.copy_static_content()
sg.generate_site()
if __name__ == '__main__':
main()