FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
git-sim/src/git_sim/settings.py at dev · initialcommit-com/git-sim · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
initialcommit-com
/
git-sim
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
122
Star
4.7k
Code
Issues
6
Pull requests
2
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
git-sim
/
src
/
git_sim
/
settings.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (44 loc) · 1.57 KB
Breadcrumbs
git-sim
/
src
/
git_sim
/
settings.py
Copy path
File metadata and controls
51 lines (44 loc) · 1.57 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
2
max_tags_per_commit
:
int
=
2
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
()
Back
|
FazBrowse Home
|
New Git URL