-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
54 lines (41 loc) · 1.62 KB
/
.gitignore
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
52
53
################################################################
# #
# This file is part of hermesbaby #
# the software engineer's typewriter #
# #
# Copyright (c) 2024 Alexander Mann-Wahrenberg (basejumpa) #
# #
# https://github.com/basejumpa #
# #
# License(s) #
# #
# - MIT for contents used as software #
# - CC BY-SA-4.0 for contents used as method or otherwise #
# #
################################################################
# In-repository virtual python environment with poetry
/.venv/
# Tool folder
/.tools/
# We don't nail down the versions. Let's always get the hottest stuff.
# We are here at playground phase of a toy project, so no serious release is coming up.
# Being-up-to-date beats stability and reproducibility here.
/poetry.lock
# Documentation build folder
/out/
# Automatically generated files by Sphinx extension create-tags
_tags/
## Temporary esbonio files
esbonio.*
# Temporary files
~$*
.$*
# Any pycache-files which might appear
__pycache__/
# Junction to today's folder
/today/
/thisweek/
# Backup and intermediate files of configuration
.config.old
config.py
### EOF