mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-10-31 10:14:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Project main config page
 | |
|  *
 | |
|  * @author Pierre HUBERT
 | |
|  */
 | |
| 
 | |
| //Site mode (could be dev or prod)
 | |
| $config['siteMode'] = "dev";
 | |
| 
 | |
| //Site URL
 | |
| $config['siteURL'] = "http://devweb.local/comunic/v2/";
 | |
| 
 | |
| //API config
 | |
| $config['API_URL'] = "http://devweb.local/comunic/api/";
 | |
| $config['API_SERVICE_NAME'] = "testService";
 | |
| $config['API_SERVICE_TOKEN'] = "testPasswd"; | 
