Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MBetterd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mbetter
MBetterd
Commits
9f0510d0
Commit
9f0510d0
authored
Sep 26, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'refs/remotes/origin/master'
parents
834cd622
e37a9a8d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
.gitignore
.gitignore
+2
-1
build.py
build.py
+3
-3
README.md
distribution/README.md
+4
-0
fixture-manager
distribution/fixture-manager
+0
-0
No files found.
.gitignore
View file @
9f0510d0
...
...
@@ -11,6 +11,7 @@ __pycache__/
build/
develop-eggs/
dist/
distribution/*
downloads/
eggs/
.eggs/
...
...
build.py
View file @
9f0510d0
...
...
@@ -40,12 +40,12 @@ def install_build_dependencies():
print
(
"Installing build dependencies..."
)
# Install build requirements
if
not
run_command
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
"-r"
,
"requirements-build.txt"
]):
if
not
run_command
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
"-r"
,
"requirements-build.txt"
,
"--break-system-packages"
]):
print
(
"Failed to install build dependencies"
)
return
False
# Install runtime requirements
if
not
run_command
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
"-r"
,
"requirements.txt"
]):
if
not
run_command
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
"-r"
,
"requirements.txt"
,
"--break-system-packages"
]):
print
(
"Failed to install runtime dependencies"
)
return
False
...
...
distribution/README.md
View file @
9f0510d0
...
...
@@ -733,6 +733,10 @@ curl -H "Authorization: Bearer $API_TOKEN" \
-
Web interface integration with status display in match detail pages
-
API endpoints include status information in responses
-
Backward compatibility maintained for existing matches
-
**New Migration_007**
: Ensures 'done' status is available in existing ENUM columns
-
Safely adds 'done' to existing status ENUM if not present
-
Handles databases created before the 'done' status was added
-
Includes proper rollback support for migration reversal
-
✅
**Configuration Auto-Migration**
: Enhanced persistent directory configuration system
-
Automatic copying of .env to persistent config directory when mbetterd.conf doesn't exist
...
...
distribution/fixture-manager
View file @
9f0510d0
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment