Features:
- Rust support 🦀 (Thanks to @pepoviola)
- Add a default rewrite rule to PHP apps (to index.php)
- Able to control upgrades in a straightforward way
Fixes:
- Improved upgrade scripts
- Simplified prechecks before deployment
- Fixed path deployments
- Fixed already defined apps redirections
- Better error handling - still needs a lot of improvement here!
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			221 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			221 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const static = require('./static')
 | 
						|
const nodejs = require('./nodejs')
 | 
						|
const php = require('./php')
 | 
						|
const custom = require('./custom')
 | 
						|
const rust = require('./rust')
 | 
						|
 | 
						|
module.exports = { static, nodejs, php, custom, rust }
 |