Initialise project

This commit is contained in:
Fred Boniface 2023-02-09 21:47:59 +00:00
parent 9514829eed
commit ffbeb443a4
2 changed files with 17 additions and 2 deletions

17
main.py
View File

@ -1,4 +1,4 @@
# db-manager - Builds and manages an OwlBoard database instance
# db-manager - Builds and manages an OwlBoard database instance - To be run on a cron schedule
# Copyright (C) 2023 Frederick Boniface
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as
@ -8,4 +8,17 @@
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this program. If not, see
# https://git.fjla.uk/OwlBoard/db-manager/src/branch/main/LICENSE
# https://git.fjla.uk/OwlBoard/db-manager/src/branch/main/LICENSE
#Imports
import os
import time
import pymongo
#Fetch Environment Variables
corpus_user = os.getenv('OWL_LDB_CORPUSUSER')
corpus_pass = os.getenv('OWL_LDB_CORPUSPASS')
db_url = os.getenv('OWL_DB_HOST') + ":" + os.getenv('OWL_DB_PORT')
db_user = os.getenv('OWL_DB_USER')
db_pass = os.getenv('OWL_DB_PASS')

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
dnspython==2.3.0
pymongo==4.3.3