mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Removed old versions files.
This commit is contained in:
BIN
BrandBoard.pdf
vendored
BIN
BrandBoard.pdf
vendored
Binary file not shown.
8
configure
vendored
8
configure
vendored
@@ -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
24
docker-compose.yml
vendored
@@ -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
13
importBooks
vendored
@@ -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
4
install.sh
vendored
@@ -1,4 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
pip install pipenv &
|
||||
pipenv install &
|
||||
cd src/frontend
|
||||
Reference in New Issue
Block a user