Skip to content

Commit 07dc997

Browse files
committed
feat: enhance page setup and styling with custom CSS and improved initialization
1 parent 556a29a commit 07dc997

File tree

5 files changed

+390
-152
lines changed

5 files changed

+390
-152
lines changed

.dockerignore

+201-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,202 @@
1-
.env
1+
# # Created by .ignore support plugin (hsz.mobi)
2+
# ### Python template
3+
# # Byte-compiled / optimized / DLL files
4+
# __pycache__/
5+
# *.py[cod]
6+
# *$py.class
27

8+
# # C extensions
9+
# *.so
10+
11+
# # Distribution / packaging
12+
# .Python
13+
# env/
14+
# build/
15+
# develop-eggs/
16+
# dist/
17+
# downloads/
18+
# eggs/
19+
# .eggs/
20+
# lib/
21+
# lib64/
22+
# parts/
23+
# sdist/
24+
# var/
25+
# *.egg-info/
26+
# .installed.cfg
27+
# *.egg
28+
29+
# # Local Folders
30+
# media/
31+
32+
# # PyInstaller
33+
# # Usually these files are written by a python script from a template
34+
# # before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
# *.manifest
36+
# *.spec
37+
38+
# # Installer logs
39+
# pip-log.txt
40+
# pip-delete-this-directory.txt
41+
42+
# # Unit test / coverage reports
43+
# htmlcov/
44+
# .tox/
45+
# .coverage
46+
# .coverage.*
47+
# .cache
48+
# nosetests.xml
49+
# coverage.xml
50+
# *,cover
51+
# .hypothesis/
52+
53+
# # Translations
54+
# *.po
55+
56+
# # Django stuff:
57+
# *.log
58+
# local_settings.py
59+
60+
# # Flask stuff:
61+
# instance/
62+
# .webassets-cache
63+
64+
# # Scrapy stuff:
65+
# .scrapy
66+
67+
# # Sphinx documentation
68+
# docs/_build/
69+
70+
# # PyBuilder
71+
# target/
72+
73+
# # IPython Notebook
74+
# .ipynb_checkpoints
75+
76+
# # pyenv
77+
# .python-version
78+
79+
# # celery beat schedule file
80+
# celerybeat-schedule
81+
82+
# # dotenv
83+
# .env
84+
# .env.dev
85+
# .env.prod
86+
# .env.prod-example
87+
# .env.dev-example
88+
89+
# # virtualenv
90+
# venv/
91+
# ENV/
92+
93+
# # Spyder project settings
94+
# .spyderproject
95+
96+
# # Rope project settings
97+
# .ropeproject
98+
# ### VirtualEnv template
99+
# # Virtualenv
100+
# # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
101+
# .Python
102+
# [Bb]in
103+
# [Ii]nclude
104+
# [Ll]ib
105+
# [Ll]ib64
106+
# [Ll]ocal
107+
# [Ss]cripts
108+
# pyvenv.cfg
109+
# .venv
110+
# venv
111+
# pip-selfcheck.json
112+
# ### JetBrains template
113+
# # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
114+
# # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
115+
116+
# # User-specific stuff:
117+
# .idea/workspace.xml
118+
# .idea/tasks.xml
119+
# .idea/dictionaries
120+
# .idea/vcs.xml
121+
# .idea/jsLibraryMappings.xml
122+
123+
# # Sensitive or high-churn files:
124+
# .idea/dataSources.ids
125+
# .idea/dataSources.xml
126+
# .idea/dataSources.local.xml
127+
# .idea/sqlDataSources.xml
128+
# .idea/dynamic.xml
129+
# .idea/uiDesigner.xml
130+
131+
# # Gradle:
132+
# .idea/gradle.xml
133+
# .idea/libraries
134+
135+
# # Mongo Explorer plugin:
136+
# .idea/mongoSettings.xml
137+
138+
# .idea/
139+
140+
# ## File-based project format:
141+
# *.iws
142+
143+
# ## Plugin-specific files:
144+
145+
# # IntelliJ
146+
# /out/
147+
148+
# # mpeltonen/sbt-idea plugin
149+
# .idea_modules/
150+
151+
# # JIRA plugin
152+
# atlassian-ide-plugin.xml
153+
154+
# # Crashlytics plugin (for Android Studio and IntelliJ)
155+
# com_crashlytics_export_strings.xml
156+
# crashlytics.properties
157+
# crashlytics-build.properties
158+
# fabric.properties
159+
160+
# # SQLite3
161+
# db.sqlite3
162+
# .langchain.db
163+
164+
# # Log files
165+
# logs/
166+
167+
# # DB view
168+
# db.png
169+
170+
# # Notebooks
171+
# *.ipynb
172+
173+
# # Mac
174+
# .DS_Store
175+
176+
# # Directories
177+
# data/
178+
179+
# geckodriver
180+
# nginx/
181+
# nginx.conf
182+
183+
# log.csv
184+
185+
186+
# .devcontainer/
187+
# .vscode/
188+
189+
190+
# # docker files
191+
# Dockerfile
192+
# Dockerfile.prod
193+
# docker-compose.prod.yml
194+
# docker.compose.yml
195+
196+
# # readme
197+
# README.md
198+
199+
# # git
200+
# .git
201+
# .gitattributes
202+
# .gitignore

0 commit comments

Comments
 (0)