-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsettings.py
51 lines (44 loc) · 1.57 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import pathlib
from typing import List, Union
from pydantic_settings import BaseSettings
from git_sim.enums import StyleOptions, ColorByOptions, ImgFormat, VideoFormat
class Settings(BaseSettings):
allow_no_commits: bool = False
animate: bool = False
auto_open: bool = True
n_default: int = 5
n: int = 5
files: Union[List[pathlib.Path], None] = None
hide_first_tag: bool = False
img_format: ImgFormat = ImgFormat.JPG
INFO_STRING: str = "Simulating:"
light_mode: bool = False
transparent_bg: bool = False
logo: pathlib.Path = pathlib.Path(__file__).parent.resolve() / "logo.png"
low_quality: bool = False
max_branches_per_commit: int = 1
max_tags_per_commit: int = 1
media_dir: pathlib.Path = pathlib.Path().cwd()
outro_bottom_text: str = "Learn more at initialcommit.com"
outro_top_text: str = "Thanks for using Initial Commit!"
reverse: bool = False
show_intro: bool = False
show_outro: bool = False
speed: float = 1.5
title: str = "Git-Sim, by initialcommit.com"
video_format: VideoFormat = VideoFormat.MP4
stdout: bool = False
output_only_path: bool = False
quiet: bool = False
invert_branches: bool = False
hide_merged_branches: bool = False
all: bool = False
color_by: Union[ColorByOptions, None] = None
highlight_commit_messages: bool = False
style: Union[StyleOptions, None] = StyleOptions.CLEAN
font: str = "Monospace"
font_context: bool = False
show_command_as_title: bool = True
class Config:
env_prefix = "git_sim_"
settings = Settings()