paceboard/scripts/setup.py
2021-06-27 13:23:05 -04:00

30 lines
1.4 KiB
Python
Executable file

#!/usr/bin/env python3
### Initial configuration script for paceboard. Handles adding data to config.csv.
from utils import csv as util_csv
divider = "----------"
print(
f"\nWelcome to paceboard! Let's set up your leaderboard site :)\nWe'll save this info in csv/config.csv\n\n{divider}\n"
)
tk_game_name = input("Your game's name: ").replace('"', "")
tk_game_description = input("Description for your game: ").replace('"', "")
tk_url = input("URL of your site (format - foobar.com): ")
tk_logo_alt = input(
"Description of your game's logo (this is used for alt-text): "
).replace('"', "")
configDict = {
"tk_game_name": tk_game_name,
"tk_game_description": tk_game_description,
"tk_url": tk_url,
"tk_logo_alt": tk_logo_alt,
}
util_csv.dictWriter("../csv/config.csv", configDict)
print(
f"\n{divider}\n\nPerfect! You can always overwrite the info above by running this script again.\nHere's an overview of how to use paceboard:\n\n- Add a category using scripts/add-category.py\n- Add a run using scripts/add-run.py\n- Use scripts/generate.py to update the site with the info you've added.\n- All categories, runs, and configuration details are stored in csv/\n- Replace the logo saved as assets/img/logo.png\n- For the adventurous, you can restyle your site's pages by editing files within templates/ and css/\n\nRemember to run scripts/generate.py to initialize your site.\nThat's all for now! <3\n"
)