Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DRAFT] Core Integration #543

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c6e17bc
Initial
TreyWW Dec 5, 2024
ec02ccd
Initial Commit
TreyWW Dec 19, 2024
fda48b3
Removed migrations for a fresh start, added extended templates, made …
TreyWW Dec 22, 2024
21b4021
Fixed all modals to work with new system
TreyWW Dec 22, 2024
9c1232b
Moved to core namespace
TreyWW Dec 22, 2024
2d3072c
Added defaults
TreyWW Dec 22, 2024
719e473
Added back myfinances-specific features, and moved some to core
TreyWW Dec 25, 2024
fe3af16
Fix tests + core:dashboard moved to just dashboard
TreyWW Dec 25, 2024
ffeb8f1
Added extended auth
TreyWW Dec 27, 2024
5b20a74
Added custom function into tailwind to fetch content from core folder
TreyWW Dec 27, 2024
c1727ba
Add published version of core
TreyWW Dec 28, 2024
c6c05ef
Merge branch 'main' into core-integration
TreyWW Dec 28, 2024
efba725
Ran poetry lock to get updated hash
TreyWW Dec 28, 2024
36a70da
Fixed tailwind HTML template content finders to work with pip publish…
TreyWW Dec 28, 2024
d0beb39
temp added debug to github action
TreyWW Dec 29, 2024
000cd9b
temp added debug to github action
TreyWW Dec 29, 2024
ed91e32
Updated core to 0.0.4 and fixed settings
TreyWW Dec 30, 2024
527458e
Added venv to gh workflow
TreyWW Dec 30, 2024
65b6a58
Temporarily disable mypy while the version issues are still here
TreyWW Dec 31, 2024
5545d58
Fixed modals
TreyWW Dec 31, 2024
e16ebcd
Removed system_health as defined in core
TreyWW Dec 31, 2024
28637e7
Updated to use core/ templates, attempted to fix migrations (broke th…
TreyWW Jan 1, 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
Prev Previous commit
Next Next commit
temp added debug to github action
Signed-off-by: Trey <[email protected]>
TreyWW committed Dec 29, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d0beb3959ec6d6ba912ffbe552e3c7cc50ea5106
10 changes: 4 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -35,14 +35,12 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install latest setuptools
- name: Debug Python Environment
run: |
source .venv/bin/activate
pip install setuptools
- name: Install latest Django
run: |
source .venv/bin/activate
pip install Django
python -c "import pkgutil; print([module.name for module in pkgutil.iter_modules()])"
python -c "import core; print(core.__file__)"
python -c "import billing; print(billing.__file__)"
- name: Install dependencies and build frontend
run: |
npm ci