mirror of
				https://github.com/aclindsa/moneygo.git
				synced 2025-11-03 18:13:27 -05:00 
			
		
		
		
	Also support mysql and postgres (at least in name, they haven't been fully tested yet)
		
			
				
	
	
		
			26 lines
		
	
	
		
			981 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			981 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[moneygo]
 | 
						|
 | 
						|
# Whether to serve as FastCGI (default is false, for HTTP)
 | 
						|
fcgi = false
 | 
						|
 | 
						|
# Port to serve FCGI or HTTP on
 | 
						|
port = 8080
 | 
						|
 | 
						|
# Base directory for serving files out of. This should point to the root of the
 | 
						|
# moneygo source directory
 | 
						|
base-directory = src/github.com/aclindsa/moneygo/
 | 
						|
 | 
						|
# Type of database being used (sqlite3, mysql, postgres)
 | 
						|
db-type = sqlite3
 | 
						|
 | 
						|
# 'Data Source Name' for the database being used. This is driver-specific. See
 | 
						|
# the following examples and external resources for more information about
 | 
						|
# configuring this for your particular database configuration:
 | 
						|
#
 | 
						|
#     Sqlite example DSN: "file:moneygo.sqlite?cache=shared&mode=rwc"
 | 
						|
#    MySQL documentation: https://github.com/go-sql-driver/mysql/#dsn-data-source-name
 | 
						|
#            example DSN: "user:password@localhost/dbname"
 | 
						|
# Postgres documentation: https://godoc.org/github.com/lib/pq
 | 
						|
#            example DSN: "postgres://user:password@localhost/dbname"
 | 
						|
db-dsn = file:moneygo.sqlite?cache=shared&mode=rwc
 |