feat: add initial project scaffold with .gitignore, MIT license, and README

Create the foundational project structure for the tikker application by introducing a comprehensive .gitignore file covering C++ build artifacts, a standard MIT license file, and a minimal README describing the project as a key press monitoring tool.
This commit is contained in:
2024-12-08 15:08:39 +00:00
commit 99d486f176
3 changed files with 46 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
# ---> C++
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app