summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:01:30 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:01:30 +0200
commit47cbb529f5723b246125ae083a193e11481b89ef (patch)
tree31ab20b2fbf12bee1cd994c3d6fb822fa52622e3 /.gitignore
downloadclassroom-47cbb529f5723b246125ae083a193e11481b89ef.tar.gz
classroom-47cbb529f5723b246125ae083a193e11481b89ef.tar.bz2
classroom-47cbb529f5723b246125ae083a193e11481b89ef.zip
initializing classroom structure using anom framework
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore72
1 files changed, 72 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0b728f0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,72 @@
+# commonly ignored file patterns.
+# ---------------------------------------------
+
+# -- Node artifact files
+node_modules/
+# dist/
+
+# -- Compiled Java class files
+# *.class
+
+# -- Compiled Python bytecode
+# *.py[cod]
+
+# -- Log files
+*.log
+
+# -- Package files
+# *.jar
+
+# -- Maven
+# target/
+# dist/
+
+# -- JetBrains IDE
+.idea/
+
+# -- Unit test reports
+# TEST*.xml
+
+# -- Generated by MacOS
+.DS_Store
+
+# -- Generated by Windows
+Thumbs.db
+
+# -- Applications
+*.app
+*.exe
+*.war
+
+# Large media files
+*.mp4
+*.tiff
+*.avi
+*.flv
+*.mov
+*.wmv
+
+
+# x-anom gitignore rules
+# ---------------------------------------------
+
+# -- enviriment-variables
+.env
+
+# -- data files of data/ folder
+data/*
+
+# -- local cache
+html/cache/*
+
+# -- exceptions: keep proposing directory-structure
+!data/.gitkeep
+!core/auth/.gitkeep
+!html/cache/.gitkeep
+
+# -- ignore vendor files
+vendor/*
+
+# -- vscode ide configurations
+.vscode
+.vscode/*