Skip to content

Commit cfc61c1

Browse files
committed
init
1 parent 243d919 commit cfc61c1

File tree

10 files changed

+26
-57
lines changed

10 files changed

+26
-57
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div>
2-
<h1 align="center"><a href="https://www.epicweb.dev/workshops">Workshop Title 🎃</a></h1>
2+
<h1 align="center"><a href="https://www.epicweb.dev/workshops">React Router Fundamentals part 1 ⛓️</a></h1>
33
<strong>
4-
Workshop subtitle
4+
Data reading and display
55
</strong>
66
<p>
77
Workshop summary
@@ -13,7 +13,7 @@
1313
<div align="center">
1414
<a
1515
alt="Epic Web logo with the words Deployed Version"
16-
href="https://epicweb-dev-workshop-template.fly.dev/"
16+
href="https://epicweb-dev-react-router-fundamentals-pt-1.fly.dev/"
1717
>
1818
<img
1919
width="300px"
@@ -79,8 +79,8 @@ network connection before running the setup and grab a snack.
7979
Follow these steps to get this set up:
8080

8181
```sh nonumber
82-
git clone --depth 1 https://github.com/epicweb-dev/workshop-template.git
83-
cd workshop-template
82+
git clone --depth 1 https://github.com/epicweb-dev/react-router-fundamentals-pt-1.git
83+
cd react-router-fundamentals-pt-1
8484
npm run setup
8585
```
8686

@@ -98,13 +98,13 @@ Learn all about the workshop app on the
9898
[npm]: https://www.npmjs.com/
9999
[node]: https://nodejs.org
100100
[git]: https://git-scm.com/
101-
[build-badge]: https://img.shields.io/github/actions/workflow/status/epicweb-dev/workshop-template/validate.yml?branch=main&logo=github&style=flat-square
102-
[build]: https://github.com/epicweb-dev/workshop-template/actions?query=workflow%3Avalidate
101+
[build-badge]: https://img.shields.io/github/actions/workflow/status/epicweb-dev/react-router-fundamentals-pt-1/validate.yml?branch=main&logo=github&style=flat-square
102+
[build]: https://github.com/epicweb-dev/react-router-fundamentals-pt-1/actions?query=workflow%3Avalidate
103103
[license-badge]: https://img.shields.io/badge/license-GPL%203.0%20License-blue.svg?style=flat-square
104-
[license]: https://github.com/epicweb-dev/workshop-template/blob/main/LICENSE
104+
[license]: https://github.com/epicweb-dev/react-router-fundamentals-pt-1/blob/main/LICENSE
105105
[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
106106
[coc]: https://kentcdodds.com/conduct
107107
[win-path]: https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/
108108
[mac-path]: http://stackoverflow.com/a/24322978/971592
109-
[issue]: https://github.com/epicweb-dev/workshop-template/issues/new
109+
[issue]: https://github.com/epicweb-dev/react-router-fundamentals-pt-1/issues/new
110110
<!-- prettier-ignore-end -->

SETUP_STEPS.md

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

epicshop/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ ADD . .
1616
RUN npm install --omit=dev
1717

1818
CMD rm -rf ${EPICSHOP_CONTEXT_CWD} && \
19-
git clone https://github.com/epicweb-dev/workshop-template ${EPICSHOP_CONTEXT_CWD} && \
19+
git clone https://github.com/epicweb-dev/react-router-fundamentals-pt-1 ${EPICSHOP_CONTEXT_CWD} && \
2020
cd ${EPICSHOP_CONTEXT_CWD} && \
2121
npx epicshop start

epicshop/fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
app = "epicweb-dev-workshop-template"
1+
app = "epicweb-dev-react-router-fundamentals-pt-1"
22
primary_region = "sjc"
33
kill_signal = "SIGINT"
44
kill_timeout = 5

exercises/FINISHED.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Workshop Title 🎃
1+
# React Router Fundamentals part 1 ⛓️
22

33
Hooray! You're all done! 👏👏

exercises/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Workshop Title 🎃
1+
# React Router Fundamentals part 1 ⛓️

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "workshop-template",
2+
"name": "react-router-fundamentals-pt-1",
33
"private": true,
44
"epicshop": {
5-
"title": "Workshop Title 🎃",
6-
"subtitle": "Workshop subtitle",
7-
"githubRepo": "https://github.com/epicweb-dev/workshop-template",
5+
"title": "React Router Fundamentals part 1 ⛓️",
6+
"subtitle": "Data reading and display",
7+
"githubRepo": "https://github.com/epicweb-dev/react-router-fundamentals-pt-1",
88
"instructor": {
9-
"name": "Some instructor",
10-
"avatar": "/images/instructor.png",
11-
"𝕏": "your_x_handle_here"
9+
"name": "Alem Tuzlak",
10+
"avatar": "/images/instructor.jpg",
11+
"𝕏": "AlemTuzlak"
1212
},
1313
"product": {
1414
"host": "www.epicweb.dev",
@@ -33,14 +33,14 @@
3333
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
3434
},
3535
"keywords": [],
36-
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
36+
"author": "Alem Tuzlak",
3737
"license": "GPL-3.0-only",
3838
"workspaces": [
3939
"exercises/*/*",
4040
"examples/*"
4141
],
4242
"engines": {
43-
"node": "^18.19.0 || >=20.5.0",
43+
"node": ">=20.5.0",
4444
"npm": ">=8.16.0",
4545
"git": ">=2.18.0"
4646
},
@@ -51,4 +51,4 @@
5151
"typescript": "^5.7.3"
5252
},
5353
"prettier": "@epic-web/config/prettier"
54-
}
54+
}

public/images/instructor.jpg

22 KB
Loading

public/images/instructor.png

-339 KB
Binary file not shown.

0 commit comments

Comments
 (0)