Skip to content

Commit 0b6fe87

Browse files
committed
v1.0.44 - CLI Tools, Dynamic Services, VITE
1 parent 3d5c621 commit 0b6fe87

File tree

153 files changed

+69473
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+69473
-219
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ env__
1414
#*.sqlite*
1515

1616
#.env
17+
yarn.lock

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.0.0

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [1.0.44] 2025-03-01
4+
### Changes
5+
6+
- Added Dynamic Tables module
7+
- Added Dynamic API Module
8+
- Added CLI Module for different internal tasks
9+
- Integrate Vite for Assets management
10+
311
## [1.0.43] 2024-12-16
412
### Changes
513

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,14 @@ The product is designed to deliver the best possible user experience with highly
4141

4242
- Simple, Easy-to-Extend Codebase
4343
- Datta Able Design - Full Integration
44+
- Dynamic Tables
45+
- Dynamic API
46+
- CLI for Coding Tasks
4447
- Bootstrap 5 Styling
4548
- Session-based Authentication, Password recovery
4649
- DB Persistence: SQLite (default), can be used with MySql, PgSql
47-
- Docker
48-
- CI/CD integration for Render
50+
- Docker, CI/CD for Render
51+
- Vite for assets management
4952

5053
![Django Datta Able - Open-Source Django Starter](https://user-images.githubusercontent.com/51070104/176118649-7233ffbc-6118-4f56-8cda-baa81d256877.png)
5154

README_branching.md

Lines changed: 0 additions & 69 deletions
This file was deleted.

api/serializers.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

api/urls.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

api/views.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -o errexit
44

55
python -m pip install --upgrade pip
66

7+
# UI
8+
yarn ; yarn build
9+
710
pip install -r requirements.txt
811

912
python manage.py collectstatic --no-input

cli/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) AppSeed.us
4+
"""
5+
6+
from .common import *
7+
from .h_shell import *
8+
from .h_code_parser import *
9+
from .h_git import *
10+
from .h_util import *
11+
from .h_files import *
12+
from .h_django import *
13+
from .h_django_common import *
14+
from .h_django_deps import *
15+
from .h_django_env import *
16+
from .h_django_urls import *
17+
from .h_django_settings import *
18+
from .h_ai_claude import *
19+

0 commit comments

Comments
 (0)