1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Import A Github Project Into CodeSandbox as a workflow til

This commit is contained in:
jbranchaud
2018-04-12 17:12:31 -05:00
parent 34f6c18ae7
commit eb9bd44385
2 changed files with 15 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/).
_662 TILs and counting..._
_663 TILs and counting..._
---
@@ -778,6 +778,7 @@ _662 TILs and counting..._
## Workflow
- [Convert An ePub Document To PDF On Mac](workflow/convert-an-epub-document-to-pdf-on-mac.md)
- [Import A Github Project Into CodeSandbox](workflow/import-a-github-project-into-codesandbox.md)
- [Interactively Kill A Process With fkill](workflow/interactively-kill-a-process-with-fkill.md)
- [Toggle Between Stories In Storybook](workflow/toggle-between-stories-in-storybook.md)

View File

@@ -0,0 +1,13 @@
# Import A Github Project Into CodeSandbox
A really fancy feature that [CodeSandbox](https://codesandbox.io/) offers is
the ability to import a Github project. If you go to the [Create
Sandbox](https://codesandbox.io/s/) page, you'll see some options including
_Import from Github_. From there, paste in the URL to a public github
repository and a matter of seconds your entire project will be synced into
a new CodeSandbox project.
I recently did this with a [create-react-app
project](https://codesandbox.io/s/github/jbranchaud/redux-little-router-example)
and CodeSandbox even knew how to recognize that it was a CRA app so that it
could run and display it in the web view.