mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
16 lines
268 B
Python
16 lines
268 B
Python
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()
|