we also have added the necessary logic to auto prune ephemeral nodes because headscale doesn't seem to automatically remove them. this change made use of a database which is now stored in the persistent headplane directory.
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
export default defineConfig({
|
|
dialect: 'sqlite',
|
|
schema: './app/server/db/schema.ts',
|
|
dbCredentials: {
|
|
url: 'file:test/hp_persist.db',
|
|
},
|
|
});
|