Skip to content

Commit 8901b3e

Browse files
authored
Merge pull request #97 from cmaureir/2025
2025
2 parents 9f6808b + ae8928e commit 8901b3e

File tree

123 files changed

+15316
-1575
lines changed

Some content is hidden

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

123 files changed

+15316
-1575
lines changed

.github/workflows/deploy-gh-pages.yml

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

.github/workflows/deploy.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
6+
push:
7+
branches: [ main ]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout your repository using git
22+
uses: actions/checkout@v4
23+
- name: Install, build, and upload your site
24+
uses: withastro/action@v3
25+
with:
26+
# path: . # The root location of your Astro project inside the repository. (optional)
27+
# node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
28+
package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29+
30+
deploy:
31+
needs: build
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
1-
### Flask.Python Stack ###
2-
# Byte-compiled / optimized / DLL files
3-
__pycache__/
4-
*.py[cod]
5-
*$py.class
6-
7-
# Distribution / packaging
8-
.Python
9-
build/
1+
# build output
102
dist/
11-
var/
12-
.installed.cfg
133

14-
# Unit test / coverage reports
15-
htmlcov/
16-
.coverage
17-
.coverage.*
18-
.cache
19-
coverage.xml
20-
*.cover
21-
.pytest_cache/
4+
# generated types
5+
.astro/
226

23-
# pyenv
24-
.python-version
25-
#
26-
### VirtualEnv ###
27-
pyvenv.cfg
28-
.env
29-
.venv
30-
env/
31-
venv/
32-
ENV/
7+
# dependencies
8+
node_modules/
339

10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
3419

35-
# Pelican
36-
output/
20+
# macOS-specific files
21+
.DS_Store
3722

38-
# IDE
39-
.vscode
23+
# vscode folder
24+
.vscode

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "pelican-plugins"]
2-
path = pelican-plugins
2+
path = old/pelican-plugins
33
url = https://github.com/getpelican/pelican-plugins
44
[submodule "pelican-fh5co-marble"]
5-
path = pelican-fh5co-marble
5+
path = old/pelican-fh5co-marble
66
url = [email protected]:PyLadiesBerlin/pelican-fh5co-marble.git

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"useTabs": false,
3+
"singleQuote": true,
4+
"trailingComma": "es5",
5+
"semi": true,
6+
"printWidth": 100,
7+
"plugins": ["prettier-plugin-astro", "prettier-plugin-tailwindcss"]
8+
}

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)