Merge branch 'main' of github.com:LAION-AI/Open-Chat-GPT

This commit is contained in:
Yannic Kilcher
2022-12-13 12:16:58 +01:00
3 changed files with 19 additions and 2 deletions
-1
View File
@@ -1,4 +1,3 @@
__pycache__
.env
notes.txt
db/
+18
View File
@@ -0,0 +1,18 @@
# Open-Chat-GPT REST Backend
## Almbeic database init
Please edit `alembic.ini` and specify your database uri in the parameter `sqlalchemy.url`.
## REST Server Configuration
Please either use environment variables or create a `.env` file in the backend root directory (in which this readme file is located) to specify the `DATABASE_URI`.
Example contents of a `.env` file for the backend:
```
DATABASE_URI="postgresql://<username>:<password>@<host>/<database_name>"
BACKEND_CORS_ORIGINS=["http://localhost", "http://localhost:4200", "http://localhost:3000", "http://localhost:8080", "https://localhost", "https://localhost:4200", "https://localhost:3000", "https://localhost:8080", "http://dev.ocgpt.laion.ai", "https://stag.ocgpt.laion.ai", "https://ocgpt.laion.ai"]
```
+1 -1
View File
@@ -55,7 +55,7 @@ version_path_separator = os # Use os.pathsep. Default configuration used for ne
# are written from script.py.mako
# output_encoding = utf-8
sqlalchemy.url = postgresql://ocgpt_backend_admin:829b5fc358842652fbdd04d0e6f012f2ff4227684f6b24a073b0ec78666e9d5a@localhost/ocgpt_backend
sqlalchemy.url = postgresql://<username>:<password>@<host>/<database_name>
[post_write_hooks]