diff options
author | Linnnus <[email protected]> | 2024-04-27 20:23:14 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-27 20:23:14 +0200 |
commit | ed0ed51c99da86882b5e79ec973116e0d833ee78 (patch) | |
tree | ca621a7864cf8ef6e7ef4c34efd813beef07983c | |
parent | f1131bfc8cc3e80900eb349d656e269d7682d2ae (diff) |
fix: Ignore database file
As of 110e05bad2c378473954e41231d7581754c8cc8f we create a database
file in PWD when running. This should obviously not be checked into
version control.
-rw-r--r-- | .gitignore | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,9 @@ +# Secrets .env + # Cert files cert.pem -key.pem
\ No newline at end of file +key.pem + +# Database +thisisadatabasethatcontainsdata.db |