forked from open-webui/open-webui
		
	refac: versioning using package
This commit is contained in:
		
							parent
							
								
									b740fa3a7b
								
							
						
					
					
						commit
						7a730c3f0f
					
				
					 3 changed files with 5 additions and 3 deletions
				
			
		|  | @ -57,7 +57,6 @@ app.include_router(utils.router, prefix="/utils", tags=["utils"]) | |||
| async def get_status(): | ||||
|     return { | ||||
|         "status": True, | ||||
|         "version": WEBUI_VERSION, | ||||
|         "auth": WEBUI_AUTH, | ||||
|         "default_models": app.state.DEFAULT_MODELS, | ||||
|         "default_prompt_suggestions": app.state.DEFAULT_PROMPT_SUGGESTIONS, | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| { | ||||
| 	"name": "open-webui", | ||||
| 	"version": "0.0.1", | ||||
| 	"version": "v1.0.0-alpha.101", | ||||
| 	"private": true, | ||||
| 	"scripts": { | ||||
| 		"dev": "vite dev --host", | ||||
|  |  | |||
|  | @ -2,5 +2,8 @@ import { sveltekit } from '@sveltejs/kit/vite'; | |||
| import { defineConfig } from 'vite'; | ||||
| 
 | ||||
| export default defineConfig({ | ||||
| 	plugins: [sveltekit()] | ||||
| 	plugins: [sveltekit()], | ||||
| 	define: { | ||||
| 		APP_VERSION: JSON.stringify(process.env.npm_package_version) | ||||
| 	} | ||||
| }); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek