mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	Update AppName.md & AppName.sh (#2603)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							56a7505f15
						
					
				
				
					commit
					62939edc2e
				
			
							
								
								
									
										8
									
								
								.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md
									
									
									
									
										vendored
									
									
								
							@@ -95,7 +95,7 @@ Example:
 | 
				
			|||||||
>| Variable | Description | Notes |
 | 
					>| Variable | Description | Notes |
 | 
				
			||||||
>|----------|-------------|-------|
 | 
					>|----------|-------------|-------|
 | 
				
			||||||
>| `APP` | Application name | Must match ct\AppName.sh |
 | 
					>| `APP` | Application name | Must match ct\AppName.sh |
 | 
				
			||||||
>| `TAGS` | Proxmox display tags without Spaces, only ; | Limit the number |  
 | 
					>| `var_tags` | Proxmox display tags without Spaces, only ; | Limit the number |  
 | 
				
			||||||
>| `var_cpu` | CPU cores | Number of cores |
 | 
					>| `var_cpu` | CPU cores | Number of cores |
 | 
				
			||||||
>| `var_ram` | RAM | In MB |
 | 
					>| `var_ram` | RAM | In MB |
 | 
				
			||||||
>| `var_disk` | Disk capacity | In GB |
 | 
					>| `var_disk` | Disk capacity | In GB |
 | 
				
			||||||
@@ -193,13 +193,13 @@ wget -q
 | 
				
			|||||||
unzip -q
 | 
					unzip -q
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- If a command does not come with this functionality use `&>/dev/null` to suppress it's output.
 | 
					- If a command does not come with this functionality use `$STD` to suppress it's output.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Example:
 | 
					Example:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```bash
 | 
					```bash
 | 
				
			||||||
php artisan migrate --force &>/dev/null
 | 
					$STD php artisan migrate --force 
 | 
				
			||||||
php artisan config:clear &>/dev/null
 | 
					$STD php artisan config:clear 
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 3.5 **Backups**
 | 
					### 3.5 **Backups**
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh
									
									
									
									
										vendored
									
									
								
							@@ -8,7 +8,7 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
 | 
				
			|||||||
# App Default Values
 | 
					# App Default Values
 | 
				
			||||||
APP="[APP_NAME]"
 | 
					APP="[APP_NAME]"
 | 
				
			||||||
# Name of the app (e.g. Google, Adventurelog, Apache-Guacamole"
 | 
					# Name of the app (e.g. Google, Adventurelog, Apache-Guacamole"
 | 
				
			||||||
TAGS="[TAGS]"
 | 
					var_tags="[TAGS]"
 | 
				
			||||||
# Tags for Proxmox VE, maximum 2 pcs., no spaces allowed, separated by a semicolon ; (e.g. database | adblock;dhcp) 
 | 
					# Tags for Proxmox VE, maximum 2 pcs., no spaces allowed, separated by a semicolon ; (e.g. database | adblock;dhcp) 
 | 
				
			||||||
var_cpu="[CPU]"
 | 
					var_cpu="[CPU]"
 | 
				
			||||||
# Number of cores (1-X) (e.g. 4) - default are 2
 | 
					# Number of cores (1-X) (e.g. 4) - default are 2
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user