mirror of
				https://github.com/ajnart/homarr.git
				synced 2025-10-31 18:46:23 +01:00 
			
		
		
		
	* ♻️ Migrate from prisma to drizzle * 🐛 Build issue with CalendarTile * 🚧 Temporary solution for docker container * 🐛 Drizzle not using DATABASE_URL * ♻️ Address pull request feedback * 🐛 Remove console log of env variables * 🐛 Some unit tests not working * 🐋 Revert docker tool changes * 🐛 Issue with board slug page for logged in users --------- Co-authored-by: Thomas Camlong <thomascamlong@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			244 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			244 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import 'dotenv';
 | |
| import { type Config } from 'drizzle-kit';
 | |
| 
 | |
| export default {
 | |
|   schema: './src/server/db/schema.ts',
 | |
|   driver: 'better-sqlite',
 | |
|   out: './drizzle',
 | |
|   dbCredentials: {
 | |
|     url: process.env.DATABASE_URL!,
 | |
|   },
 | |
| } satisfies Config;
 |