14 lines
336 B
Python
14 lines
336 B
Python
"""
|
|
Application configuration and metadata.
|
|
|
|
Contains version information and other application-level constants
|
|
that are managed by developers, not stored in the database.
|
|
"""
|
|
|
|
# Application metadata
|
|
APP_NAME = 'SneakyScanner'
|
|
APP_VERSION = '1.0.0-phase5'
|
|
|
|
# Repository URL
|
|
REPO_URL = 'https://git.sneakygeek.net/sneakygeek/SneakyScan'
|