mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-27 00:04:23 -04:00 
			
		
		
		
	chore: rewrite makefile in taskfile (#3035)
* add docker-compose with development dependencies * delete old runtime.txt file * specify specific group for postgres deps * replace makefile with taskfile with new features * drop template.env file in favor of defaults within taskfile * use with github actions * update docs for taskfile changes * update task.json for vscode * add taskfile to devcontainer.json * pre-install taskfile so startup command works * remove run command and fix desc for ui * change node-> python->py for consistency
This commit is contained in:
		
							
								
								
									
										21
									
								
								docker/docker-compose.dev.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								docker/docker-compose.dev.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| version: "3.4" | ||||
| services: | ||||
|   mailpit: | ||||
|     image: axllent/mailpit:latest | ||||
|     container_name: mealie_dev_mailpit | ||||
|     restart: no | ||||
|     environment: | ||||
|       - "MP_SMTP_AUTH_ACCEPT_ANY=true" | ||||
|       - "MP_SMTP_AUTH_ALLOW_INSECURE=true" | ||||
|     ports: | ||||
|       - "8025:8025" | ||||
|       - "1025:1025" | ||||
|   postgres: | ||||
|     container_name: mealie_dev_postgres | ||||
|     image: postgres:15 | ||||
|     restart: no | ||||
|     ports: | ||||
|       - "5432:5432" | ||||
|     environment: | ||||
|       POSTGRES_PASSWORD: mealie | ||||
|       POSTGRES_USER: mealie | ||||
		Reference in New Issue
	
	Block a user