diff --git a/BrandBoard.pdf b/BrandBoard.pdf deleted file mode 100644 index b8d485e..0000000 Binary files a/BrandBoard.pdf and /dev/null differ diff --git a/configure b/configure deleted file mode 100755 index 6b3977e..0000000 --- a/configure +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python3 -import os -from src.backend.lib.storage import Storage -from src.backend.lib.config import Config - -config = Config(os.path.split(os.path.realpath(__file__))[0]) -storage = Storage(config) -storage.create_tables() diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 41c9655..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: "3.7" - -services: - db: - image: "postgres" - restart: always - environment: - - "POSTGRES_PASSWORD=pyshelf" - - "POSTGRES_USER=pyshelf" - - "POSTGRES_DB=pyshelf" - volumes: - - "db_data:/var/lib/postgresql/data/" - pyshelf: - image: "pyshelf/pyshelf" - restart: always - ports: - - "8000:8000" - - "1337:1337" - volumes: - - "${LOCAL_BOOK_DIR}:/books" - depends_on: - - db -volumes: - db_data: diff --git a/importBooks b/importBooks deleted file mode 100755 index ae8fa8f..0000000 --- a/importBooks +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python -import pathlib -import sys - -from src.backend.lib.storage import Storage -from src.backend.pyShelf_ScanLibrary import execute_scan -from src.backend.pyShelf_MakeCollections import MakeCollections -PRG_PATH = pathlib.Path.cwd() -LIB_PATH = pathlib.Path.joinpath(PRG_PATH, "src", "backend", "lib") -sys.path.insert(0, PRG_PATH) -print("\n") -execute_scan(PRG_PATH) -MakeCollections(PRG_PATH) diff --git a/install.sh b/install.sh deleted file mode 100644 index 063f4fa..0000000 --- a/install.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -pip install pipenv & -pipenv install & -cd src/frontend