mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
return array(
 | 
						|
 | 
						|
    /*
 | 
						|
    |----------------------------------------------------------------------
 | 
						|
    | Auto backup mode
 | 
						|
    |----------------------------------------------------------------------
 | 
						|
    |
 | 
						|
    | This value is used when you save your file content. If value is true,
 | 
						|
    | the original file will be backed up before save.
 | 
						|
    */
 | 
						|
 | 
						|
    'autoBackup' => true,
 | 
						|
 | 
						|
    /*
 | 
						|
    |----------------------------------------------------------------------
 | 
						|
    | Backup location
 | 
						|
    |----------------------------------------------------------------------
 | 
						|
    |
 | 
						|
    | This value is used when you backup your file. This value is the sub
 | 
						|
    | path from root folder of project application.
 | 
						|
    */
 | 
						|
 | 
						|
    'backupPath' => base_path('storage/dotenv-editor/backups/')
 | 
						|
 | 
						|
);
 |