mirror of
https://github.com/daniviga/django-ram.git
synced 2026-02-04 01:50:39 +01:00
* Extend test coverage * Implement query optimization * More aggressing code reuse * Add more indexes and optimize usage * Fix tests * Further optimizations, improve counting to rely on backend DB * chore: add Makefile for frontend asset minification - Add comprehensive Makefile with targets for JS and CSS minification - Implements instructions from ram/portal/static/js/src/README.md - Provides targets: install, minify, minify-js, minify-css, clean, watch - Fix main.min.js to only include theme_selector.js and tabs_selector.js - Remove validators.js from minified output per README instructions * Add a Makefile to compile JS and CSS * docs: add blank line whitespace rule to AGENTS.md Specify that blank lines must not contain any whitespace (spaces or tabs) to maintain code cleanliness and PEP 8 compliance * Update for 0.20 release with optimizations * Improve Makefile
14 lines
331 B
Python
14 lines
331 B
Python
from django import VERSION as DJANGO_VERSION
|
|
from django.utils.termcolors import colorize
|
|
from ram.utils import git_suffix
|
|
|
|
if DJANGO_VERSION < (6, 0):
|
|
exit(
|
|
colorize(
|
|
"ERROR: This project requires Django 6.0 or higher.", fg="red"
|
|
)
|
|
)
|
|
|
|
__version__ = "0.20.1"
|
|
__version__ += git_suffix(__file__)
|