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

Migrate to MkDocs #559

Merged
merged 46 commits into from
Sep 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
0f0b4f8
migrate to poetry
honzajavorek Aug 25, 2023
b64011d
set up mkdocs
honzajavorek Aug 25, 2023
eba1055
port most of the textual content to Markdown
honzajavorek Aug 25, 2023
53198dd
oops
honzajavorek Aug 25, 2023
0e84742
customize the theme
honzajavorek Aug 25, 2023
ad5e000
fix build
honzajavorek Aug 25, 2023
c690436
update readme and a few other fixes
honzajavorek Aug 25, 2023
3f2a02d
addition
honzajavorek Aug 25, 2023
6cbcea6
document intentions
honzajavorek Aug 25, 2023
7ee1ef6
update readme
honzajavorek Aug 25, 2023
6d2aa66
fetch events
honzajavorek Aug 26, 2023
ec30064
reformat
honzajavorek Aug 26, 2023
c1592c0
not needed
honzajavorek Aug 26, 2023
913f05b
implement events
honzajavorek Aug 26, 2023
68043fb
fix links
honzajavorek Aug 26, 2023
a77e229
improve events
honzajavorek Aug 26, 2023
ec0aca1
images
honzajavorek Aug 26, 2023
5057809
analytics
honzajavorek Aug 26, 2023
1abcee6
format code
honzajavorek Aug 26, 2023
d94b732
redirects
honzajavorek Aug 26, 2023
0bc6aeb
redirects
honzajavorek Aug 26, 2023
66e1965
english version
honzajavorek Aug 26, 2023
322f2b2
fixes
honzajavorek Aug 26, 2023
a346fd0
delete the old code
honzajavorek Aug 26, 2023
9bd0989
move readme to https://github.com/pyvec/python.cz/pull/559
honzajavorek Aug 26, 2023
49175f0
just add space
mpavlase Aug 30, 2024
393790f
integrate teemup for scraping events
mpavlase Aug 30, 2024
68ef0dc
removing obsolete entrypoint
mpavlase Aug 30, 2024
5f1ab72
add README by notes for development
mpavlase Aug 30, 2024
26faf92
add PYTHONPATH to build
mpavlase Aug 31, 2024
94262d0
watch also hooks folder
mpavlase Aug 31, 2024
e8fd1a3
remove extruct
mpavlase Aug 31, 2024
1d9d173
poetry, just download deps
mpavlase Aug 31, 2024
55dc982
fix link syntax at zapojse page
mpavlase Aug 31, 2024
e10732e
remove path from gh actions
mpavlase Aug 31, 2024
21bd142
try to disable a lot of gh actions
mpavlase Aug 31, 2024
6b1769d
gh actions troubleshooting
mpavlase Aug 31, 2024
6a2ebff
gh actions troubleshooting hopefully
mpavlase Aug 31, 2024
fd20548
upgrade mkdocs to 1.6
honzajavorek Aug 31, 2024
7fc40e8
mkdocs 1.6 modifies python path and allows for straightforward import…
honzajavorek Aug 31, 2024
10255b2
update readme
honzajavorek Aug 31, 2024
3332c49
remove unknown config option
honzajavorek Aug 31, 2024
df981b5
this shouldnt be necessary anymore
honzajavorek Aug 31, 2024
f3f2200
use ruff instead of black
honzajavorek Aug 31, 2024
3c4dc95
očista sekce Zapojse, odstranění TODO poznámky
mpavlase Sep 1, 2024
9fc2942
remove tests that now they don't make sense
mpavlase Sep 1, 2024
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
fix build
honzajavorek committed Aug 31, 2024
commit ad5e000b654975466e7a24f438cbab297e9a3b89
17 changes: 11 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -24,11 +24,16 @@ jobs:
- name: Install dependencies
run: poetry install

- name: Test
run: poetry run pythoncz test
# - name: Test
# run: poetry run pytest

- name: Build
run: poetry run mkdocs build

- if: ${{ github.ref == 'refs/heads/main' }}
name: Deploy
run: pipenv run pythoncz deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
#cname: python.cz
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -32,3 +32,6 @@ pip-log.txt
/cache/
.cache
.pytest_cache/

# MkDocs
/site/