chirpstack/.gitignore
Momo Bel 21f07fedb0
Implement support for SQLite database backend. (#418)
This feature makes it possible to select between PostgreSQL and SQLite as database backend using a compile feature-flag. It is not possible to enable both at the same time.

---------

Co-authored-by: Orne Brocaar <info@brocaar.com>
2024-08-06 16:23:43 +01:00

31 lines
349 B
Plaintext

# hidden files
.*
!/chirpstack/.rpm
!/.cargo
!/.env
!.npmignore
# Log files
*.log
# Binary packages
/dist
# SQLite databases
*.sqlite
# Rust target directory
**/target
**/target-sqlite
# Certificates
/chirpstack/configuration/certs/*
/chirpstack/configuration/private_*.toml
# UI
/ui/node_modules
/ui/build
# Exclude from gitignore
!/.github