This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// vite.config.js | |
import { defineConfig } from 'vite' | |
import vue from '@vitejs/plugin-vue' | |
import { viteStaticCopy } from 'vite-plugin-static-copy' | |
import { loadEnv } from 'vite' | |
import { join } from 'path' | |
export default () => { | |
// Load the env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generate a http://yuml.me definition of Django's class-based views to get a | |
nice class diagram of those views. | |
""" | |
# This runs as a script, but in my Django project root, so import the settings | |
import settings | |
import inspect | |
import django.views.generic.list as list_views |