Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

login #3

Open
wants to merge 27 commits into
base: frontend
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
SECRET_KEY=thq+oe+#)3mflrn)vr)a)xshc$mn@wqh+*9(!8zfej!_c@o_2a
DB_HOST=dpg-cp5qv4sf7o1s739krlvg-a
DB_PASSWORD=0NyuY7FJ4iFvsgbZZUZjES5yfgNkJkHH
DB_NAME=hcm_super
DB_USER=cysoft
INTERNAL_DB_URL=postgres://cysoft:0NyuY7FJ4iFvsgbZZUZjES5yfgNkJkHH@dpg-cp5qv4sf7o1s739krlvg-a/cysoft
EXTERNAL_DB_URL=PGPASSWORD=0NyuY7FJ4iFvsgbZZUZjES5yfgNkJkHH psql -h dpg-cp5qv4sf7o1s739krlvg-a.oregon-postgres.render.com -U cysoft cysoft
DB_PORT=5432
DEBUG=Flase

89 changes: 89 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# Created by https://www.gitignore.io

### OSX ###
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


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

# C extensions
*.so

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

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

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

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

# Translations
*.mo
*.pot

# Sphinx documentation
docs/_build/

# PyBuilder
target/


### Django ###
*.log
*.pot
*.pyc
__pycache__/
local_settings.py

.env
db.sqlite3
73 changes: 73 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
asgiref = "==3.8.1"
branca = "==0.7.2"
brotli = "==1.1.0"
certifi = "==2024.2.2"
charset-normalizer = "==3.3.2"
click = "==8.1.7"
coreapi = "==2.3.3"
coreschema = "==0.0.4"
defusedxml = "==0.7.1"
dj-database-url = "==2.1.0"
django = "==5.0.4"
django-allauth = "==0.63.1"
django-ckeditor = "==6.7.1"
django-cleanup = "==8.1.0"
django-countries = "==7.6.1"
django-crispy-forms = "==2.1"
django-extensions = "==3.2.3"
django-filter = "==24.2"
django-js-asset = "==2.2.0"
django-leaflet = "==0.29.1"
django-sass-processor = "==1.4"
django-widget-tweaks = "==1.5.0"
djangorestframework = "==3.15.1"
drf-yasg = "*"
folium = "==0.16.0"
geographiclib = "==2.0"
geopy = "==2.4.1"
gunicorn = "==22.0.0"
h11 = "==0.14.0"
idna = "==3.7"
inflection = "==0.5.1"
itypes = "==1.2.0"
jinja2 = "==3.1.4"
markupsafe = "==2.1.5"
numpy = "==1.26.4"
oauthlib = "==3.2.2"
packaging = "==24.0"
pandas = "==2.2.2"
pillow = "==10.3.0"
psycopg = "==3.1.18"
psycopg2-binary = "==2.9.9"
pygments = "==2.17.2"
python-dateutil = "==2.9.0.post0"
python-decouple = "==3.8"
python-dotenv = "==1.0.1"
python3-openid = "==3.2.0"
pytz = "==2024.1"
pyyaml = "==6.0.1"
requests = "==2.32.0"
requests-oauthlib = "==2.0.0"
"ruamel.yaml" = "==0.18.6"
"ruamel.yaml.clib" = "==0.2.8"
shapely = "==2.0.4"
six = "==1.16.0"
sqlparse = "==0.5.0"
typing-extensions = "==4.11.0"
tzdata = "==2024.1"
uritemplate = "==4.1.1"
urllib3 = "==2.2.1"
uvicorn = "==0.29.0"
whitenoise = "==6.6.0"
xyzservices = "==2024.4.0"

[dev-packages]

[requires]
python_version = "3.10"
Loading