- Implemented gitzone services command for managing MongoDB and MinIO containers - Added smart port assignment (20000-30000 range) to avoid conflicts - Project-specific container names for complete isolation - Data persistence in .nogit/ directories - MongoDB Compass connection string generation with network IP detection - Auto-configuration via .nogit/env.json with secure defaults - Commands: start, stop, restart, status, config, compass, logs, remove, clean - Interactive confirmations for destructive operations - Comprehensive documentation and Task Venture Capital GmbH legal update
		
			
				
	
	
		
			32 lines
		
	
	
		
			982 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			982 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as smartlog from '@push.rocks/smartlog';
 | 
						|
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
 | 
						|
import * as npmextra from '@push.rocks/npmextra';
 | 
						|
import * as path from 'path';
 | 
						|
import * as projectinfo from '@push.rocks/projectinfo';
 | 
						|
import * as smartcli from '@push.rocks/smartcli';
 | 
						|
import * as smartpath from '@push.rocks/smartpath';
 | 
						|
import * as smartpromise from '@push.rocks/smartpromise';
 | 
						|
import * as smartupdate from '@push.rocks/smartupdate';
 | 
						|
import * as smartshell from '@push.rocks/smartshell';
 | 
						|
import * as smartnetwork from '@push.rocks/smartnetwork';
 | 
						|
import * as smartfile from '@push.rocks/smartfile';
 | 
						|
import * as smartinteract from '@push.rocks/smartinteract';
 | 
						|
import * as smartdelay from '@push.rocks/smartdelay';
 | 
						|
 | 
						|
export {
 | 
						|
  smartlog,
 | 
						|
  smartlogDestinationLocal,
 | 
						|
  npmextra,
 | 
						|
  path,
 | 
						|
  projectinfo,
 | 
						|
  smartcli,
 | 
						|
  smartpath,
 | 
						|
  smartpromise,
 | 
						|
  smartupdate,
 | 
						|
  smartshell,
 | 
						|
  smartnetwork,
 | 
						|
  smartfile,
 | 
						|
  smartinteract,
 | 
						|
  smartdelay,
 | 
						|
};
 |