From 47cbb529f5723b246125ae083a193e11481b89ef Mon Sep 17 00:00:00 2001 From: George Halkiadakis Date: Sun, 12 Mar 2023 07:01:30 +0200 Subject: initializing classroom structure using anom framework --- .gitignore | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') 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/* -- cgit v1.2.3