diff --git a/projects/project-3/backend/README.md b/projects/project-3/backend/README.md new file mode 100644 index 0000000..d145ee1 --- /dev/null +++ b/projects/project-3/backend/README.md @@ -0,0 +1,21 @@ +# Backend Project + +## 1. Install requirements +```shell +pip3 install -r requirements.txt +``` + +## 2. Init database +To init the database it is required that you have at least python 3.7 installed. + +Generate the database with +```shell +python3 db_init.py +``` + +Note: Import can be interrupted to resume it later! +Note: The importer outputs logs to the terminal, and the db_init.log file. + +## 3. Start the backend +To start the backend, you first have to initialize the database! + \ No newline at end of file diff --git a/projects/project-3/backend/requirements.txt b/projects/project-3/backend/requirements.txt new file mode 100644 index 0000000..663bd1f --- /dev/null +++ b/projects/project-3/backend/requirements.txt @@ -0,0 +1 @@ +requests \ No newline at end of file