Initialise project
This commit is contained in:
parent
9514829eed
commit
ffbeb443a4
17
main.py
17
main.py
@ -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
|
# 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
|
# 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.
|
# 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
|
# 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
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
dnspython==2.3.0
|
||||||
|
pymongo==4.3.3
|
Reference in New Issue
Block a user