mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Improve db path prompt when install
This commit is contained in:
		@@ -3,7 +3,7 @@ Gogs - Go Git Service [
 | 
			
		||||
 | 
			
		||||
##### Current version: 0.8.31
 | 
			
		||||
##### Current version: 0.8.32
 | 
			
		||||
 | 
			
		||||
| Web | UI  | Preview  |
 | 
			
		||||
|:-------------:|:-------:|:-------:|
 | 
			
		||||
 
 | 
			
		||||
@@ -91,7 +91,7 @@ USER = root
 | 
			
		||||
PASSWD =
 | 
			
		||||
; For "postgres" only, either "disable", "require" or "verify-full"
 | 
			
		||||
SSL_MODE = disable
 | 
			
		||||
; For "sqlite3" and "tidb"
 | 
			
		||||
; For "sqlite3" and "tidb", use absolute path when you start as service
 | 
			
		||||
PATH = data/gogs.db
 | 
			
		||||
 | 
			
		||||
[admin]
 | 
			
		||||
 
 | 
			
		||||
@@ -65,7 +65,7 @@ db_name = Database Name
 | 
			
		||||
db_helper = Please use INNODB engine with utf8_general_ci charset for MySQL.
 | 
			
		||||
ssl_mode = SSL Mode
 | 
			
		||||
path = Path
 | 
			
		||||
sqlite_helper = The file path of SQLite3 or TiDB database.
 | 
			
		||||
sqlite_helper = The file path of SQLite3 or TiDB database. <br>Please use absolute path when you start as service.
 | 
			
		||||
err_empty_db_path = SQLite3 or TiDB database path cannot be empty.
 | 
			
		||||
err_invalid_tidb_name = TiDB database name does not allow characters "." and "-".
 | 
			
		||||
no_admin_and_disable_registration = You cannot disable registration without creating an admin account.
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const APP_VER = "0.8.31.0205"
 | 
			
		||||
const APP_VER = "0.8.32.0207"
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
0.8.31.0205
 | 
			
		||||
0.8.32.0207
 | 
			
		||||
@@ -68,7 +68,7 @@
 | 
			
		||||
						<div class="inline required field {{if or .Err_DbPath .Err_DbSetting}}error{{end}}">
 | 
			
		||||
							<label for="db_path">{{.i18n.Tr "install.path"}}</label>
 | 
			
		||||
							<input id="db_path" name="db_path" value="{{.db_path}}">
 | 
			
		||||
							<span class="help">{{.i18n.Tr "install.sqlite_helper"}}</span>
 | 
			
		||||
							<span class="help">{{.i18n.Tr "install.sqlite_helper" | Safe}}</span>
 | 
			
		||||
						</div>
 | 
			
		||||
					</div>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user