mirror of
				https://github.com/InsanusMokrassar/TelegramBotAPI-bot_template.git
				synced 2025-11-04 06:00:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			212 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			212 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#!make
 | 
						|
 | 
						|
.ONESHELL:
 | 
						|
.PHONY:
 | 
						|
 | 
						|
clean:
 | 
						|
	./gradlew clean
 | 
						|
 | 
						|
build:
 | 
						|
	./gradlew build
 | 
						|
 | 
						|
start:
 | 
						|
	./gradlew run
 | 
						|
 | 
						|
startCompose:
 | 
						|
	docker-compose build && docker-compose up
 | 
						|
 | 
						|
buildAndStartCompose:
 | 
						|
	make clean build startCompose
 |