Removed old versions files.

This commit is contained in:
th3r00t
2023-03-18 01:00:02 -04:00
parent 4033937486
commit a09bd4775b
5 changed files with 0 additions and 49 deletions

BIN
BrandBoard.pdf vendored

Binary file not shown.

8
configure vendored
View File

@@ -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()

24
docker-compose.yml vendored
View File

@@ -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:

13
importBooks vendored
View File

@@ -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)

4
install.sh vendored
View File

@@ -1,4 +0,0 @@
#!/usr/bin/env bash
pip install pipenv &
pipenv install &
cd src/frontend