Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

One Directory Higher #54

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
9 changes: 7 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
env
.env
CREDENTIALS.json
ploutos_f.tar
ploutos.tar
.*.tar
nginx
env.example
.*.log
README.md
.*.png
LICENSE
67 changes: 4 additions & 63 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,64 +1,5 @@
*.log
*.csv
*.csv#
*.pyc
*.json
*.Rhistory
_dashboard/__pycache__/*
*.ipynb
_migrations/__pycache__/*
/Ploutos/Ploutos/pycashe/*
/Ploutos/dashboard/migrations/*
!/Ploutos/dashboard/migrations/__init__.py
/Ploutos/Ploutos/dashboard/migrations/pycashe/*
/Ploutos/Ploutos/dashboard/pycashe/*
*.sqlite3



#ignore migrations except the folder and __init__.py
**/migrations/**
!**/migrations
!**/migrations/__init__.py

# Git Hub Boiler plate .gitignore

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Django stuff:
*.log
*.pot

.ruff_cache
.env
env
.env
__pycache__
*.log
113 changes: 0 additions & 113 deletions Ploutos/dashboard/templates/dashboard/base.html

This file was deleted.

12 changes: 0 additions & 12 deletions Ploutos/dashboard/urls.py

This file was deleted.

7 changes: 0 additions & 7 deletions Ploutos/nginx/Dockerfile

This file was deleted.

15 changes: 0 additions & 15 deletions Ploutos/templates/registration/login.html

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion Ploutos/Ploutos/asgi.py → core/asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

from django.core.asgi import get_asgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Ploutos.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")

application = get_asgi_application()
Loading