Skip to content

Commit 654cd34

Browse files
committed
added various materials
1 parent 1a72bbd commit 654cd34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+11665
-0
lines changed

.athignore

Lines changed: 382 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,382 @@
1+
###############################################################################
2+
# ATHIGNORE - Files and folder in this file are IGNORED and will not appear in
3+
# the Athanor file explorer nor in the project documentation.
4+
#
5+
# Uses the same syntax of .gitignore (see https://git-scm.com/docs/gitignore).
6+
#
7+
# If a file or folder from your project does not appear in the Athanor file
8+
# explorer and you would like it to be included, ensure that it is not ignored
9+
# by a .athignore rule below by commenting or removing that line.
10+
###############################################################################
11+
12+
###############################################################################
13+
# GIT SYSTEM FILES
14+
###############################################################################
15+
.git/
16+
.gitignore
17+
.gitattributes
18+
.gitmodules
19+
.github
20+
git-log.txt
21+
git-reflog.txt
22+
git-status.txt
23+
24+
###############################################################################
25+
# OPERATING SYSTEM / FILE EXPLORER FILES
26+
###############################################################################
27+
# macOS
28+
.DS_Store
29+
.AppleDouble
30+
.LSOverride
31+
Icon
32+
._*
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Windows
42+
Thumbs.db
43+
Thumbs.db:encryptable
44+
ehthumbs.db
45+
ehthumbs_vista.db
46+
Desktop.ini
47+
[Dd]esktop.ini
48+
$RECYCLE.BIN/
49+
*.stackdump
50+
*.cab
51+
*.msi
52+
*.msix
53+
*.msm
54+
*.msp
55+
*.lnk
56+
57+
# Linux
58+
*~
59+
.fuse_hidden*
60+
.directory
61+
.Trash-*
62+
.nfs*
63+
64+
###############################################################################
65+
# EDITOR / IDE / TOOL FILES
66+
###############################################################################
67+
# Vim
68+
*.swp
69+
*.swo
70+
*.swn
71+
*.swm
72+
*.un~
73+
*.o
74+
.session
75+
[._]*.s[a-v][a-z]
76+
[._]*.sw[a-p]
77+
[._]s[a-rt-v][a-z]
78+
[._]ss[a-gi-z]
79+
[._]sw[a-p]
80+
Session.vim
81+
Sessionx.vim
82+
.netrwhist
83+
84+
# Emacs
85+
*~
86+
\#*\#
87+
.#*
88+
89+
# Visual Studio Code
90+
.vscode/
91+
.vscode/*
92+
!.vscode/settings.json
93+
!.vscode/tasks.json
94+
!.vscode/launch.json
95+
!.vscode/extensions.json
96+
.history/
97+
*.code-workspace
98+
99+
# JetBrains (IntelliJ, PyCharm, etc.)
100+
.idea/
101+
.idea_modules/
102+
*.iml
103+
*.ipr
104+
*.iws
105+
# 'out/' is also ignored below in Build Artifacts
106+
107+
# Sublime Text
108+
*.sublime-workspace
109+
*.sublime-project
110+
*.tmlanguage.cache
111+
*.tmPreferences.cache
112+
*.stTheme.cache
113+
114+
# Eclipse
115+
.metadata
116+
bin/
117+
tmp/
118+
*.tmp
119+
*.bak
120+
*.swp
121+
*~.nib
122+
local.properties
123+
.settings/
124+
.loadpath
125+
.recommenders
126+
.classpath
127+
.project
128+
*.launch
129+
130+
###############################################################################
131+
# BUILD ARTIFACTS
132+
###############################################################################
133+
# Common build / distribution directories
134+
bin/
135+
build/
136+
dist/
137+
forge/
138+
out/
139+
target/
140+
release/
141+
deploy/
142+
Debug/
143+
Release/
144+
x64/
145+
x86/
146+
.mtj.tmp/
147+
.gradle/
148+
!gradle/wrapper/gradle-wrapper.jar
149+
Carthage/Build/
150+
.webpack/
151+
152+
# Common packaging / compression formats
153+
*.zip
154+
*.tar
155+
*.tar.gz
156+
*.tgz
157+
*.rar
158+
*.7z
159+
*.gz
160+
*.iso
161+
162+
###############################################################################
163+
# DEPENDENCIES
164+
###############################################################################
165+
# Node.js
166+
node_modules/
167+
.npm/
168+
.yarn/
169+
.yarn-integrity
170+
.pnp.*
171+
/bower_components/
172+
/jspm_packages/
173+
/.pnp
174+
.pnp.js
175+
package-lock.json
176+
yarn.lock
177+
178+
# Python
179+
__pycache__/
180+
*.py[cod]
181+
*$py.class
182+
*.so
183+
.Python
184+
develop-eggs/
185+
downloads/
186+
eggs/
187+
.eggs/
188+
lib/
189+
lib64/
190+
parts/
191+
sdist/
192+
var/
193+
wheels/
194+
*.egg-info/
195+
.installed.cfg
196+
*.egg
197+
.python-version
198+
env/
199+
ENV/
200+
venv/
201+
.venv/
202+
pip-log.txt
203+
pip-delete-this-directory.txt
204+
.tox/
205+
# Some coverage-related files also appear below in "Coverage Reports"
206+
207+
# Ruby
208+
.bundle/
209+
vendor/bundle/
210+
*.gem
211+
*.rbc
212+
/.config
213+
/InstalledFiles
214+
/pkg/
215+
/spec/reports/
216+
/spec/examples.txt
217+
/test/tmp/
218+
/test/version_tmp/
219+
/tmp/
220+
.byebug_history
221+
.dat*
222+
.repl_history
223+
*.bridgesupport
224+
build-iPhoneOS/
225+
build-iPhoneSimulator/
226+
.lib/bundler/man/
227+
.rvmrc
228+
229+
# Java
230+
*.class
231+
*.jar
232+
*.war
233+
*.ear
234+
*.nar
235+
hs_err_pid*
236+
replay_pid*
237+
238+
# PHP (Composer)
239+
vendor/
240+
composer.phar
241+
242+
# Go
243+
*.exe
244+
*.exe~
245+
*.dll
246+
*.dylib
247+
*.test
248+
*.out
249+
go.work
250+
251+
# Rust
252+
/target/
253+
**/*.rs.bk
254+
Cargo.lock
255+
256+
###############################################################################
257+
# LOG / TEMPORARY / RUNTIME FILES
258+
###############################################################################
259+
# Log files
260+
npm-debug.log*
261+
yarn-debug.log*
262+
yarn-error.log*
263+
pnpm-debug.log*
264+
.pnpm-debug.log*
265+
*.log
266+
*.log.*
267+
debug.log
268+
error.log
269+
logs/
270+
271+
# Temporary files (caches, partial downloads, etc.)
272+
*.tmp
273+
*.temp
274+
.tmp/
275+
.temp/
276+
tmp/
277+
temp/
278+
.cache/
279+
.cache-loader/
280+
.sass-cache/
281+
*.cache
282+
.eslintcache
283+
.stylelintcache
284+
*.pid
285+
286+
###############################################################################
287+
# ENVIRONMENT / CONFIG FILES
288+
###############################################################################
289+
# Sensitive or environment-specific config files (often contain credentials/keys)
290+
.env
291+
.env.*
292+
.env.local
293+
.env.*.local
294+
.env.development
295+
.env.test
296+
.env.production
297+
*.local
298+
*.secret
299+
.secret
300+
!.env.example
301+
.credentials
302+
secrets.yml
303+
secrets.json
304+
305+
# Security-related files
306+
*.pem
307+
*.key
308+
*.crt
309+
*.cert
310+
*.p12
311+
*.pfx
312+
313+
###############################################################################
314+
# OTHER COMMON IGNORABLE FILES
315+
###############################################################################
316+
# Databases / data files
317+
*.sqlite
318+
*.sqlite3
319+
*.db
320+
*.db-shm
321+
*.db-wal
322+
*.sql
323+
*.bak
324+
325+
# Coverage reports
326+
coverage/
327+
*.lcov
328+
*.clover
329+
.nyc_output
330+
coverage.xml
331+
nosetests.xml
332+
*.cover
333+
*.py,cover
334+
.hypothesis/
335+
.pytest_cache/
336+
.cypress
337+
cypress/videos/
338+
cypress/screenshots/
339+
340+
# Python notebook checkpoints
341+
.ipynb_checkpoints/
342+
343+
# Documentation
344+
docs/_site/
345+
#docs/api/ # This might be useful
346+
347+
# Media and generated documents (use with caution — you might not always want these ignored)
348+
*.jpg
349+
*.jpeg
350+
*.png
351+
*.gif
352+
*.ico
353+
*.svg
354+
*.webp
355+
*.pdf
356+
*.doc
357+
*.docx
358+
*.xls
359+
*.xlsx
360+
*.ppt
361+
*.pptx
362+
363+
###############################################################################
364+
# ATHANOR PROJECT FILES
365+
###############################################################################
366+
367+
.athignore
368+
/athanor.yml
369+
###############################################################################
370+
# IMPORTED FROM .gitignore
371+
# These files were imported from .gitignore at creation.
372+
# These are NOT updated automatically if .gitignore is later changed.
373+
###############################################################################
374+
375+
/.quarto/
376+
/_site/
377+
/_book/
378+
379+
###############################################################################
380+
# PROJECT FILES
381+
# Add below specific files and folders you want to ignore.
382+
###############################################################################

0 commit comments

Comments
 (0)