├── .gitignore
├── LICENSE
├── README.md
├── Workshop.md
├── index.html
├── index.js
├── package.json
├── styles
├── CreatePlaylist.scss
├── Playlist.scss
├── Playlists.scss
└── index.scss
└── webpack.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | package-lock.json
3 | dist
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 OrbitDB
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # web3-workshop
2 |
3 | [](https://gitter.im/orbitdb/Lobby) [](https://riot.permaweb.io/#/room/#orbitdb:permaweb.io)
4 |
5 | This workshop was presented at the OrbitDB session during the #Web3 summit in Berlin, in August 2019.
6 |
7 | ## How to use this repository
8 |
9 | You'll notice, if you run `git log`, that you're on the root of this repository when you start. If you run `git branch`, you'll see that there are six branches with numbers in front of them. We encourage you to either create an extra repository for your work, and checkout the branches as you go, or to create separate branches to do work and checkout the tutorial branches (or, just overwrite your changes as you go). By the end of your `git checkout`s, you should have learned something about how to use OrbitDB!
10 |
11 | Our goal here is to create a basic Playlist app.
12 |
13 | Take a look at the `Workshop.md` to get started! When ever you're done with that document, checkout the next branch in order to see the next step.
14 |
15 | ## Contribute
16 |
17 | We welcome any and all PRs! Also, if you have questions, we encourage you to jump on [Gitter](https://gitter.im/orbitdb/Lobby) and to talk to us.
18 |
19 | ## License
20 |
21 | [MIT](LICENSE)
22 |
--------------------------------------------------------------------------------
/Workshop.md:
--------------------------------------------------------------------------------
1 | # Workshop Instructions
2 |
3 | [](https://gitter.im/orbitdb/Lobby) [](https://riot.permaweb.io/#/room/#orbitdb:permaweb.io)
4 |
5 | First, run `npm install`
6 |
7 | Then, to begin the webpack server run the command `npm start`. We'll keep this running over the course of the workshop; it'll automatically hotload any new edits to the server. To do more edits, open a new terminal window.
8 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |