Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ dmypy.json
.pyre/

.vscode/
.idea/
out/
.next/
.DS_Store
Expand All @@ -138,3 +139,11 @@ storybook-static/
# Sentry Auth Token
.sentryclirc
.astro

# EuroPython website
src/content/speakers
src/content/sessions
src/content/days
src/data/speakers.json
src/data/sessions.json
src/data/schedule.json
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ pre:

install:
pnpm install
[ "$(PREVIEW)" = "true" ] && pnpm update_data || true
pnpm generate_content

dev:
pnpm dev
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && pnpm pagefind --site dist",
"build": "pnpm generate_content && astro check && astro build && pnpm pagefind --site dist",
"update_data": "NODE_TLS_REJECT_UNAUTHORIZED=0 node src/scripts/fetchData.js",
"generate_content": "node src/scripts/generateContent.js",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write --plugin=prettier-plugin-astro ."
Expand All @@ -29,6 +31,7 @@
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"hastscript": "^9.0.0",
"js-yaml": "^4.1.0",
"pagefind": "^1.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand All @@ -40,6 +43,7 @@
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1"
},
Expand Down
Loading