Skip to content

Commit 2acbeb0

Browse files
Merge pull request #2 from Tempo-Organization/dev
feat(All): switched to uv/just
2 parents c4b7c6e + 140df72 commit 2acbeb0

Some content is hidden

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

71 files changed

+1220
-1109
lines changed

.github/workflows/dev_releases.yml

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

.github/workflows/github_pages.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: github_pages
2+
on:
3+
push:
4+
branches:
5+
- dev
6+
permissions:
7+
contents: write
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Configure Git Credentials
14+
run: |
15+
git config user.name github-actions[bot]
16+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: 3.x
20+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
21+
- uses: actions/cache@v4
22+
with:
23+
key: mkdocs-material-${{ env.cache_id }}
24+
path: .cache
25+
restore-keys: |
26+
mkdocs-material-
27+
- run: pip install mkdocs-material
28+
- run: mkdocs gh-deploy --force

.github/workflows/main_releases.yml

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

.gitignore

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ipython_config.py
9999
# This is especially recommended for binary packages to ensure reproducibility, and is more
100100
# commonly ignored for libraries.
101101
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102-
#poetry.lock
102+
*.lock
103103

104104
# pdm
105105
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
@@ -158,15 +158,6 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161-
/assets/base/assets/uasset_gui
162-
/assets/base/assets/stove
163-
/assets/base/assets/fmodel
164-
assets/base/__main__.exe
165-
assets/base/tempo_gui.exe
166-
/assets/base/working_dir
167-
/src/tempo_gui/presets
168-
/assets/base/presets
169-
src/tempo_gui/settings.toml
170-
/assets/base/assets/spaghetti
171-
/assets/base/assets/umodel
172-
/src/tempo_gui/assets/umodel
161+
162+
# Flet
163+
storage/

0 commit comments

Comments
 (0)