mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 18:15:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			302 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			302 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| export BACKEND_VERSION="v0.0.1"
 | |
| 
 | |
| export POSTGRES_USER=postgres
 | |
| export POSTGRES_PASSWORD=password
 | |
| export POSTGRES_PORT=5432
 | |
| export POSTGRES_HOST=db
 | |
| export POSTGRES_DB=flowy
 | |
| 
 | |
| export DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} | 
