Skip to content
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
121 changes: 121 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

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

# PyInstaller
# Usually these files are written by a script, but they might be committed by
# accident.
*.manifest
*.spec

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

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# Pipfile.lock

# poetry
# poetry.lock

# PEP 582; __pypackages__ directory
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
*env/
*venv/
ENV/
*env.bak/
*venv.bak/

# IDEs and editors
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
*.komodoproject
.spyderproject
.ropeproject

# Miscellaneous
.DS_Store
Thumbs.db
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# selfHelp-server
After creating venv using python3.10 run

python3.10 seed_db.py


intstall requirements.txt then run

uvicorn main:app --host 0.0.0.0 --port 8000 --reload
Binary file removed app/__pycache__/main.cpython-310.pyc
Binary file not shown.
Binary file removed app/__pycache__/main.cpython-311.pyc
Binary file not shown.
Binary file removed app/api/__pycache__/api.cpython-310.pyc
Binary file not shown.
Binary file removed app/api/__pycache__/api.cpython-311.pyc
Binary file not shown.
12 changes: 0 additions & 12 deletions app/api/api.py

This file was deleted.

Binary file removed app/api/endpoints/__pycache__/agents.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/auth.cpython-310.pyc
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/auth.cpython-311.pyc
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/chat.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/search.cpython-310.pyc
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/search.cpython-311.pyc
Binary file not shown.
Binary file removed app/api/endpoints/__pycache__/user.cpython-310.pyc
Binary file not shown.
175 changes: 0 additions & 175 deletions app/api/endpoints/agents.py

This file was deleted.

Loading