Skip to content

Commit f70a15f

Browse files
committed
feat: deploy to Netlify
1 parent 4898290 commit f70a15f

File tree

3 files changed

+67
-1
lines changed

3 files changed

+67
-1
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# Local Netlify folder
26+
.netlify

Diff for: README.md

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,46 @@
1-
# LWJ Demo!
1+
<p align="center">
2+
<a href="https://www.learnwithjason.dev">
3+
<img src="https://res.cloudinary.com/jlengstorf/image/upload/q_auto,f_auto,w_240/v1579281727/lwj/learnwithjason.png" alt="Learn With Jason" width="120" />
4+
</a>
5+
</p>
6+
<h1 align="center">
7+
Let’s Learn CommandBar! (with James Evans)
8+
</h1>
9+
<h3 align="center">
10+
This app was built live on <em>Learn With Jason</em> and it was super fun and I’m sad you weren’t there.
11+
</h3>
12+
<p align="center">
13+
But don’t worry! You can still:
14+
<a href="https://www.learnwithjason.dev/let-s-learn-commandbar"><strong>watch the video</strong></a> ·
15+
<a href="https://lwj-commandbar.netlify.app"><strong>see the demo</strong></a> ·
16+
<a href="https://app.netlify.com/start/deploy?repository=https://github.com/learnwithjason/commandbar&utm_source=learnwithjason&utm_medium=github&utm_campaign=devex"><strong>deploy this project</strong></a> ·
17+
<a href="https://jason.af/lwj/schedule"><strong>see upcoming episodes</strong></a>
18+
</p>
19+
20+
&nbsp;
21+
22+
Adding a ⌘+K shortcut to open a command palette in your app is a great way to give your users more control. CommandBar lets you add powerful search, nav, & custom actions quickly. James Evans will teach us how!
23+
24+
&nbsp;
25+
26+
## More Information
27+
28+
- [Watch this app get built live + see links and additional resources][episode]
29+
- [Follow _Learn With Jason_ on Twitch][twitch] to watch future episodes live
30+
- [Add the _Learn With Jason_ schedule to your Google Calendar][cal]
31+
32+
&nbsp;
33+
<p align="center">
34+
<a href="https://app.netlify.com/start/deploy?repository=https://github.com/learnwithjason/commandbar&utm_source=learnwithjason&utm_medium=github&utm_campaign=devex">
35+
<img src="https://www.netlify.com/img/deploy/button.svg" alt="Deploy this project to Netlify" />
36+
</a>
37+
</p>
38+
39+
[episode]: https://www.learnwithjason.dev/let-s-learn-commandbar
40+
[twitch]: https://jason.af/twitch
41+
[cal]: https://jason.af/lwj/cal
42+
43+
## Details
244

345
A little CRUD-y site to showcase how CommandBar works and is configured.
446

Diff for: netlify.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# example netlify.toml
2+
[build]
3+
command = "react-scripts build"
4+
functions = "netlify/functions"
5+
publish = "build"
6+
7+
## Uncomment to use this redirect for Single Page Applications like create-react-app.
8+
## Not needed for static site generators.
9+
#[[redirects]]
10+
# from = "/*"
11+
# to = "/index.html"
12+
# status = 200
13+
14+
## (optional) Settings for Netlify Dev
15+
## https://github.com/netlify/cli/blob/main/docs/netlify-dev.md#project-detection
16+
#[dev]
17+
# command = "yarn start" # Command to start your dev server
18+
# port = 3000 # Port that the dev server will be listening on
19+
# publish = "dist" # Folder with the static content for _redirect file
20+
21+
## more info on configuring this file: https://www.netlify.com/docs/netlify-toml-reference/

0 commit comments

Comments
 (0)