Skip to content

Commit ed778b1

Browse files
authored
Merge pull request #847 from piotrgredowski/master
Add Warsaw 2026 event
2 parents 09245a9 + 2625c1d commit ed778b1

File tree

6 files changed

+39
-20
lines changed

6 files changed

+39
-20
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,17 @@
1010

1111
[![Netlify Status](https://api.netlify.com/api/v1/badges/a12816da-77eb-44b0-950f-f72d7fa73704/deploy-status)](https://app.netlify.com/sites/eloquent-knuth-6dbbe5/deploys)
1212

13-
# build
13+
## Development
14+
15+
For local development consider using docker with below command:
16+
17+
```bash
18+
docker run --rm -it \
19+
-p 8000:8000 \
20+
-p 8001:8001 \
21+
-v "$PWD":/app \
22+
-v pythonpizza_node_modules:/app/node_modules \
23+
-w /app \
24+
node:16-bullseye \
25+
bash -lc "corepack enable && yarn install && yarn develop -H 0.0.0.0 -p 8000"
26+
```

src/components/hero/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
min-height: 48rem;
99
padding-top: 32.9rem;
1010
position: relative;
11-
background: url(../../images/events/ostrava-2026.jpg) center / cover;
11+
background: url(../../images/events/warsaw-2026.png) center / cover;
1212

1313
@media (--mobile) {
1414
padding-top: 16.9rem;
@@ -71,4 +71,4 @@
7171
color: var(--white);
7272
}
7373
}
74-
}
74+
}

src/components/past-event/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default props => {
2222
>
2323
<div
2424
style={{
25-
backgroundImage: `url(${require(`../../images/events/${image}.jpg`)})`,
25+
backgroundImage: `url(${require(`../../images/events/${image}`)})`,
2626
}}
2727
className="PastEvent--background"
2828
/>

src/data/future-events.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
- city: Ostrava
2-
date: '2026-02-21'
3-
where: "Impact Hub Ostrava, Sokolská tř. 1263/24"
4-
site: https://ostrava.python.pizza/
5-
image: ostrava-2026
1+
- city: Warsaw
2+
date: '2026-05-09'
3+
where: 'PJAIT building A, Koszykowa 86, Warsaw, Poland'
4+
site: https://warsaw.python.pizza/
5+
image: warsaw-2026.png

src/data/past-events.yaml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,59 @@
22
date: '2017-07-16'
33
where: Riot Studio
44
site: https://2017.naples.python.pizza
5-
image: naples-2017
5+
image: naples-2017.jpg
66
nofilter: true
77

88
- city: Naples
99
date: '2018-07-15'
1010
where: PAN
1111
site: https://2018.naples.python.pizza
12-
image: naples-2018
12+
image: naples-2018.jpg
1313

1414
- city: Berlin
1515
date: '2019-02-23'
1616
where: Wooga
1717
site: https://2019.berlin.python.pizza
18-
image: berlin-2019
18+
image: berlin-2019.jpg
1919

2020
- city: Berlin Night
2121
date: '2019-08-23'
2222
where: Wooga
2323
site: https://night.berlin.python.pizza/
24-
image: berlin-night
24+
image: berlin-night.jpg
2525

2626
- city: Hamburg
2727
date: '2019-11-09'
2828
where: SinnerSchrader
2929
site: https://2019.hamburg.python.pizza/
30-
image: hamburg-2019
30+
image: hamburg-2019.jpg
3131

3232
- city: Remote
3333
date: '2020-04-25'
3434
where: Online
3535
site: https://remote.python.pizza
36-
image: remote-2020
36+
image: remote-2020.jpg
3737

3838
- city: Holguín
3939
date: '2020-11-14'
4040
where: Holguín Cuba
4141
site: https://holguin.python.pizza/
42-
image: holguin-2020
42+
image: holguin-2020.jpg
4343

4444
- city: Prague
4545
date: '2024-02-24'
46-
where: "Apify office, Lucerna Palace"
46+
where: 'Apify office, Lucerna Palace'
4747
site: https://prague.python.pizza/
48-
image: prague-2024
48+
image: prague-2024.jpg
4949

5050
- city: Brno
5151
date: '2025-02-22'
52-
where: "Clubco Brno, Vlněna 5"
52+
where: 'Clubco Brno, Vlněna 5'
5353
site: https://brno.python.pizza/
54-
image: brno-2025
54+
image: brno-2025.jpg
55+
56+
- city: Ostrava
57+
date: '2026-02-21'
58+
where: 'Impact Hub Ostrava, Sokolská tř. 1263/24'
59+
site: https://ostrava.python.pizza/
60+
image: ostrava-2026.jpg

src/images/events/warsaw-2026.png

3.16 MB
Loading

0 commit comments

Comments
 (0)