forked from GitHub/dbot
		
	 a130c3e744
			
		
	
	
		a130c3e744
		
	
	
	
	
		
			
			* config.json is now created in the correct location * config.json is only created if it doesn't already exist * vim launches to edit config.json on first install * User is prompted to run depressionbot directly from the script
		
			
				
	
	
		
			36 lines
		
	
	
		
			625 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			625 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| cat LICENCE
 | |
| git submodule init
 | |
| git submodule update
 | |
| 
 | |
| npm install underscore request sandbox express moment jade@0.25
 | |
| 
 | |
| cd public/
 | |
| wget http://twitter.github.com/bootstrap/assets/bootstrap.zip
 | |
| unzip bootstrap.zip
 | |
| rm bootstrap.zip
 | |
| 
 | |
| mkdir d3
 | |
| cd d3
 | |
| wget http://d3js.org/d3.v3.zip
 | |
| unzip d3.v3.zip
 | |
| rm d3.v3.zip
 | |
| 
 | |
| cd ../..
 | |
| 
 | |
| if [ ! -f config.json ];
 | |
| then
 | |
|     echo 'Creating configuration file...'
 | |
|     cp config.json.sample config.json
 | |
|     vim config.json
 | |
| fi
 | |
| 
 | |
| read -p "Setup complete. Run depressionbot now? [y/N]"
 | |
| if [[ ! $REPLY =~ ^[Yy]$ ]]
 | |
| then
 | |
|     echo 'Okay. To run the bot, use "node run.js"'
 | |
|     exit
 | |
| fi
 | |
| node run.js
 | |
| 
 |