| 
									
										
										
										
											2018-06-03 14:27:35 +00:00
										 |  |  | PYTHON=python | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | SETUP_WIZARD_IMAGE=microblogpub-setup-wizard:latest | 
					
						
							|  |  |  | PWD=$(shell pwd) | 
					
						
							| 
									
										
										
										
											2018-06-03 14:27:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-17 20:55:39 +00:00
										 |  |  | # Build the config (will error if an existing config/me.yml is found) via a Docker container
 | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | .PHONY: config | 
					
						
							|  |  |  | config: | 
					
						
							|  |  |  | 	# Build the container for the setup wizard on-the-fly | 
					
						
							|  |  |  | 	cd setup_wizard && docker build . -t $(SETUP_WIZARD_IMAGE) | 
					
						
							|  |  |  | 	# Run and remove instantly | 
					
						
							| 
									
										
										
										
											2019-06-17 20:55:39 +00:00
										 |  |  | 	-docker run -e MICROBLOGPUB_WIZARD_PROJECT_NAME --rm -it --volume $(PWD):/app/out $(SETUP_WIZARD_IMAGE) | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | 	# Finally, remove the tagged image | 
					
						
							|  |  |  | 	docker rmi $(SETUP_WIZARD_IMAGE) | 
					
						
							| 
									
										
										
										
											2018-06-01 18:29:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | # Reload the federation test instances (for local dev)
 | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | .PHONY: reload-fed | 
					
						
							| 
									
										
										
										
											2018-06-01 18:29:44 +00:00
										 |  |  | reload-fed: | 
					
						
							| 
									
										
										
										
											2018-07-12 22:45:29 +00:00
										 |  |  | 	docker build . -t microblogpub:latest | 
					
						
							| 
									
										
										
										
											2018-06-01 18:29:44 +00:00
										 |  |  | 	docker-compose -p instance2 -f docker-compose-tests.yml stop | 
					
						
							|  |  |  | 	docker-compose -p instance1 -f docker-compose-tests.yml stop | 
					
						
							|  |  |  | 	WEB_PORT=5006 CONFIG_DIR=./tests/fixtures/instance1/config docker-compose -p instance1 -f docker-compose-tests.yml up -d --force-recreate --build | 
					
						
							|  |  |  | 	WEB_PORT=5007 CONFIG_DIR=./tests/fixtures/instance2/config docker-compose -p instance2 -f docker-compose-tests.yml up -d --force-recreate --build | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | # Reload the local dev instance
 | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | .PHONY: reload-dev | 
					
						
							| 
									
										
										
										
											2018-07-14 10:14:08 +00:00
										 |  |  | reload-dev: | 
					
						
							| 
									
										
										
										
											2019-04-22 08:52:32 +00:00
										 |  |  | 	docker build . -t microblogpub:latest | 
					
						
							| 
									
										
										
										
											2018-07-14 10:14:08 +00:00
										 |  |  | 	docker-compose -f docker-compose-dev.yml up -d --force-recreate | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | # Build the microblogpub Docker image
 | 
					
						
							|  |  |  | .PHONY: microblogpub | 
					
						
							|  |  |  | microblogpub: | 
					
						
							|  |  |  | 	# Update microblog.pub | 
					
						
							| 
									
										
										
										
											2018-05-22 22:41:37 +00:00
										 |  |  | 	git pull | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | 	# Rebuild the Docker image | 
					
						
							| 
									
										
										
										
											2019-07-16 20:33:53 +00:00
										 |  |  | 	docker build . --no-cache -t microblogpub:latest | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-17 19:33:15 +00:00
										 |  |  | .PHONY: css | 
					
						
							|  |  |  | css: | 
					
						
							|  |  |  | 	# Download pure.css if needed | 
					
						
							|  |  |  | 	[[ ! -f static/pure.css ]] && curl https://unpkg.com/purecss@1.0.1/build/pure-min.css > static/pure.css | 
					
						
							|  |  |  | 	# Download the emojis from twemoji if needded | 
					
						
							| 
									
										
										
										
											2019-08-17 19:39:05 +00:00
										 |  |  | 	[[ ! -d static/twemoji ]] && wget https://github.com/twitter/twemoji/archive/v12.1.2.tar.gz && tar xvzf v12.1.2.tar.gz  && mv twemoji-12.1.2/assets/svg static/twemoji && rm -rf twemoji-12.1.2 && rm -f v12.1.2.tar.gz | 
					
						
							| 
									
										
										
										
											2019-08-17 19:33:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | # Run the docker-compose project locally (will perform a update if the project is already running)
 | 
					
						
							|  |  |  | .PHONY: run | 
					
						
							| 
									
										
										
										
											2019-08-17 19:33:15 +00:00
										 |  |  | run: microblogpub css | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | 	# (poussetaches and microblogpub Docker image will updated) | 
					
						
							|  |  |  | 	# Update MongoDB | 
					
						
							| 
									
										
										
										
											2019-08-14 22:28:55 +00:00
										 |  |  | 	docker pull mongo:3 | 
					
						
							| 
									
										
										
										
											2019-08-01 17:55:30 +00:00
										 |  |  | 	docker pull poussetaches/poussetaches | 
					
						
							| 
									
										
										
										
											2019-04-22 09:18:06 +00:00
										 |  |  | 	# Restart the project | 
					
						
							| 
									
										
										
										
											2018-06-23 10:19:34 +00:00
										 |  |  | 	docker-compose stop | 
					
						
							| 
									
										
										
										
											2018-05-22 22:41:37 +00:00
										 |  |  | 	docker-compose up -d --force-recreate --build |