This commit is contained in:
Timothy J. Baek 2024-08-30 10:56:31 -07:00
parent 560b9228fd
commit 08efabc696
4 changed files with 9 additions and 8 deletions

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- main # or whatever branch you want to use - main # or whatever branch you want to use
- dev
jobs: jobs:
release: release:

View File

@ -75,7 +75,7 @@ def run_migrations():
from alembic.config import Config from alembic.config import Config
from alembic import command from alembic import command
alembic_cfg = Config("alembic.ini") alembic_cfg = Config(BACKEND_DIR / "alembic.ini")
command.upgrade(alembic_cfg, "head") command.upgrade(alembic_cfg, "head")
except Exception as e: except Exception as e:
print(f"Error: {e}") print(f"Error: {e}")

10
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.3.16", "version": "0.3.17.dev1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open-webui", "name": "open-webui",
"version": "0.3.16", "version": "0.3.17.dev1",
"dependencies": { "dependencies": {
"@codemirror/lang-javascript": "^6.2.2", "@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6", "@codemirror/lang-python": "^6.1.6",
@ -8503,9 +8503,9 @@
} }
}, },
"node_modules/svelte": { "node_modules/svelte": {
"version": "4.2.18", "version": "4.2.19",
"resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.18.tgz", "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.19.tgz",
"integrity": "sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==", "integrity": "sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==",
"dependencies": { "dependencies": {
"@ampproject/remapping": "^2.2.1", "@ampproject/remapping": "^2.2.1",
"@jridgewell/sourcemap-codec": "^1.4.15", "@jridgewell/sourcemap-codec": "^1.4.15",

View File

@ -1,6 +1,6 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.3.16", "version": "0.3.17.dev1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run pyodide:fetch && vite dev --host", "dev": "npm run pyodide:fetch && vite dev --host",