mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Removed un-needed files.
This commit is contained in:
6
.tern-config
vendored
6
.tern-config
vendored
@@ -1,6 +0,0 @@
|
||||
{
|
||||
“plugins”:
|
||||
{
|
||||
“node”: {}
|
||||
}
|
||||
}
|
||||
33
_Pipfile
vendored
33
_Pipfile
vendored
@@ -1,33 +0,0 @@
|
||||
[[source]]
|
||||
url = "https://pypi.org/simple"
|
||||
verify_ssl = true
|
||||
name = "pypi"
|
||||
|
||||
[packages]
|
||||
websockets = "*"
|
||||
loguru = "*"
|
||||
pypdf2 = "*"
|
||||
bs4 = "*"
|
||||
requests = "*"
|
||||
psycopg2-binary = "*"
|
||||
mobi-python = "*"
|
||||
psycopg = "*"
|
||||
lxml = "*"
|
||||
"sqlalchemy.orm" = "*"
|
||||
sqlalchemy = "==2.0.0b3"
|
||||
fastapi = {extras = ["all"], version = "*"}
|
||||
jinja2 = "*"
|
||||
libsass = "*"
|
||||
nodejs-bin = "*"
|
||||
npm = "*"
|
||||
brotlipy = "*"
|
||||
|
||||
[dev-packages]
|
||||
debugpy = "*"
|
||||
pudb = "*"
|
||||
ptipython = "*"
|
||||
chardet = "*"
|
||||
pre-commit = "*"
|
||||
|
||||
[requires]
|
||||
python_version = "3.11.2"
|
||||
1579
_Pipfile.lock
generated
vendored
1579
_Pipfile.lock
generated
vendored
File diff suppressed because it is too large
Load Diff
30
docker/pyshelf_nginx.conf
vendored
30
docker/pyshelf_nginx.conf
vendored
@@ -1,30 +0,0 @@
|
||||
upstream django {
|
||||
server unix:///tmp/pyshelf_wsgi.sock;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8000;
|
||||
server_name localhost;
|
||||
access_log /var/log/nginx/pyshelf.access.log;
|
||||
error_log /var/log/nginx/pyshelf.error.log;
|
||||
charset utf-8;
|
||||
client_max_body_size 75M;
|
||||
|
||||
location /media {
|
||||
root /pyshelf/src/interface;
|
||||
}
|
||||
|
||||
location /static {
|
||||
root /pyshelf/src/interface;
|
||||
}
|
||||
|
||||
location /books {
|
||||
internal;
|
||||
alias /pyshelf;
|
||||
}
|
||||
|
||||
location / {
|
||||
uwsgi_pass django;
|
||||
include uwsgi_params;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user