Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
93c392c
Added basic theming
growvolutionary Dec 6, 2025
8222abb
Switched to pyproject setup
growvolutionary Dec 6, 2025
a327b98
Updated cli and fixed bugs
growvolutionary Dec 6, 2025
3cc759a
Finishes PyPI setup and updated readme
growvolutionary Dec 7, 2025
52a33c4
Bug fixes
growvolutionary Dec 7, 2025
0f5e803
Hardening and further improvements
growvolutionary Dec 8, 2025
4d905cf
Added basic tests
growvolutionary Dec 8, 2025
6554658
Fixed tests, result: 29% coverage - 10 passed
growvolutionary Dec 8, 2025
017e010
Added help and version to cli
growvolutionary Dec 8, 2025
d76abf3
Added module versioning
growvolutionary Dec 8, 2025
cf61ac3
Updated module system
growvolutionary Dec 9, 2025
3b1b45d
Fixed module class
growvolutionary Dec 10, 2025
562f71f
Added basic frontend engine features
growvolutionary Dec 10, 2025
3ebdd5b
Response fix
growvolutionary Dec 10, 2025
aa7bb3f
Updated native content to use tailwind utility
growvolutionary Dec 10, 2025
40a62b1
Bug fixes
growvolutionary Dec 10, 2025
93b96db
Finished vite & tailwind integration
growvolutionary Dec 15, 2025
df23aae
Bug fixes and standalone node cli
growvolutionary Dec 15, 2025
a390297
Added basic documentation
growvolutionary Dec 15, 2025
1876ef2
Bug fixes
growvolutionary Dec 7, 2025
6225777
Hardening and further improvements
growvolutionary Dec 8, 2025
d55c40b
Added basic tests
growvolutionary Dec 8, 2025
6dd7fec
Fixed tests, result: 29% coverage - 10 passed
growvolutionary Dec 8, 2025
d7fff41
Added help and version to cli
growvolutionary Dec 8, 2025
4071a1c
Added module versioning
growvolutionary Dec 8, 2025
9c6c901
Updated module system
growvolutionary Dec 9, 2025
b28020b
Fixed module class
growvolutionary Dec 10, 2025
406202b
Added basic frontend engine features
growvolutionary Dec 10, 2025
1362d49
Response fix
growvolutionary Dec 10, 2025
988fbb8
Updated native content to use tailwind utility
growvolutionary Dec 10, 2025
c3eecae
Bug fixes
growvolutionary Dec 10, 2025
f879d08
Finished vite & tailwind integration
growvolutionary Dec 15, 2025
115db0a
Bug fixes and standalone node cli
growvolutionary Dec 15, 2025
6061ce6
Added basic documentation
growvolutionary Dec 15, 2025
5aabbcb
Merge remote-tracking branch 'origin/dev' into dev
growvolutionary Dec 15, 2025
5ff7930
Clean up Flask++ documentation
growvolutionary Dec 15, 2025
2614a9c
Improved and fixed tailwind & node integration
growvolutionary Dec 24, 2025
674fb30
Merge remote-tracking branch 'origin/dev' into dev
growvolutionary Dec 24, 2025
b6adfbf
Minimally fixed pytests
growvolutionary Dec 24, 2025
10e8184
Update GitHub Actions workflow for Python testing
growvolutionary Dec 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on: [push, pull_request]

jobs:
test:
runs-on: debian-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y python3 python3-pip python3-venv git
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install ".[test]"
python -m pip install --upgrade pip
python -m pip install ".[test]"

- name: Run tests
run: pytest --cov=flaskpp
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@ instance/
migrations/
translations/
app_configs/
services/
logs/
flaskpp.egg-info/
dist/
node/
node_modules/

[files]
.env
messages.pot
.coverage
messages.pot
vite.config.*.js
package.json
package-lock.json
tailwind
tailwind.exe
tailwind.css
tsconfig.json
Loading