DocHub is a solution to save you time and headaches. Remember when you had to access a website and you had to provide it with lots of documents? Or worse: you didn't even have those documents at hand and had to rush to search for them?
Considering all this, DocHub is a Hub of Documents. it stores all documents you want and you can use them anytime! Stop losing huge amounts of time searching for those documents and filling out forms! Make your life easier with DocHub!
Maycol Teles Costa Dionisio Pereira
- Python 3.10+
- Pip 23.0+ (comes with Python 3)
First off, in order to get a copy of the project to run/test it, clone the repository into a folder on your machine:
git clone git@github.com:MaycolTeles/projeto_c214.git
To run the application, you can use the Makefile to run it by running:
make run
or you can use the Python interpreter directly by running:
python app/run.py
To change the application's UI or Database, you need to open the dependencies.py
module located inside dependencies
package. When you open it, you must change the variables USER_INTERFACE_INJECTION
and REPOSITORY_INJECTION
to the ones you want. For example, in case you want to use Flask and MySQL, you must have something like so:
USER_INTERFACE_INJECTION = FlaskUserInterface()
REPOSITORY_INJECTION = MySQLRepository()
But if you want to use a Desktop UI (using Tkinter) and a repository in memo, you must do like so:
USER_INTERFACE_INJECTION = TkinterUserInterface()
REPOSITORY_INJECTION = InMemoRepository()
and so on.
The application is written in Python, using concepts of:
- Clean Architecture
- Clean Code
- SOLID
- TDD
Some of the technologies are listed below:
- Django
- Flask
- Tkinter
- In Memory
- MongoDB
- MySQL
- SQLite
To check the technical information in detail you can check this docs.