Cleaning architecture

This commit is contained in:
Alexandre Aubin 2017-03-24 18:01:05 +01:00
parent a857a3438f
commit 6f7c59e8c5
9 changed files with 12 additions and 4 deletions

View file

@ -9,10 +9,10 @@ from ansi2html.style import get_styles
###############################################################################
output_dir = "./www/"
output_dir = "../www/"
template_path = os.path.join(output_dir,"template.html")
output_path = os.path.join(output_dir,"index.html")
template_path = os.path.join(output_dir,"template_pullrequests.html")
output_path = os.path.join(output_dir,"pullrequests.html")
summary_path = os.path.join("./", "summary.json")

8
refresh.sh Executable file
View file

@ -0,0 +1,8 @@
cd roadmap
./fetch.py
./analayze.py
./publish.py
cd pullrequests
./fetch.py
./analayze.py
./publish.py

View file

@ -11,7 +11,7 @@ from ansi2html.style import get_styles
output_dir = "../www/"
template_path = os.path.join(output_dir,"template_roadmapdashboard.html")
template_path = os.path.join(output_dir,"template_roadmap.html")
output_path = os.path.join(output_dir,"roadmap.html")
summary_path = os.path.join("./", "summary.json")