Skip to content

Commit

Permalink
Add HK in the README file and add license (Polkadot-Blockchain-Academ…
Browse files Browse the repository at this point in the history
…y#967)

* Add Hong Kong tag in the README list

* Fix frontpage; Add License

* run linter
  • Loading branch information
wirednkod authored Feb 5, 2024
1 parent 099ee2e commit 0eda5ad
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 10 deletions.
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Polkadot Blockchain Academy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Selected through an admission process, candidates will receive an intensive educ

The curriculum is expected to change per cohort in the first run. You can find the snapshot of the slides at the end of each cohort here:

- [Cambridge 2022](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/cambridge-2022)
- [Buenos Aires January 2023](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/buenos-aires-2023)
- [Berkeley July 2023](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/berkeley-2023)
- [Cambridge - August 2022](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/cambridge-2022)
- [Buenos Aires - January 2023](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/buenos-aires-2023)
- [Berkeley - July 2023](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/berkeley-2023)
- [Hong Kong - January 2024](https://github.com/Polkadot-Blockchain-Academy/pba-content/tree/hong-kong-2024)

## Venue Suggestions

Expand Down
2 changes: 1 addition & 1 deletion frontpage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h1>PBA Slides</h1>
<a href="berkeley-2023&#x2F;index.html" title="Lectures during Berkeley (U.S.A.) - 2023" class="slide-card" target="_blank">
<img src="./assets/3-berkeley.jpg" width="600" />
</a>
<a href="current&#x2F;index.html" title="Lectures during Hong Kong (H.K.) - 2024" class="slide-card" target="_blank">
<a href="hong-kong-2024&#x2F;index.html" title="Lectures during Hong Kong (H.K.) - 2024" class="slide-card" target="_blank">
<img src="./assets/4-polyu.jpg" width="600" />
</a>
</li>
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{
"name": "polkadot-blockchain-academy",
"version": "0.1.0",
"description": "Polkadot Blockchain Academy",
"version": "0.4.0",
"description": "Polkadot Blockchain Academy - Content",
"license": "MIT",
"scripts": {
"dev": "reveal-md ./ --watch --absolute-url http://localhost:1948",
"help-rmd": "reveal-md --help",
"tag:cambridge": "git checkout tags/cambridge-2022 && yarn && yarn run build && mv build cambridge-2022&& git checkout main",
"tag:buenos-aires": "git checkout tags/buenos-aires-2023 && yarn && yarn run build && mv build buenos-aires-2023 && git checkout main",
"tag:berkeley": "git checkout tags/berkeley-2023 && yarn && yarn run build && mv build berkeley-2023 && git checkout main",
"tag:hong-kong": "git checkout tags/hong-kong-2024 && yarn && yarn run build && mv build hong-kong-2024 && git checkout main",
"tag:current": "git checkout main && yarn && yarn run build && mv build current",
"move-tags": "git checkout main && mv cambridge-2022 build && mv buenos-aires-2023 build && mv berkeley-2023 build && mv current build",
"move-tags": "git checkout main && mv cambridge-2022 build && mv buenos-aires-2023 build && mv berkeley-2023 build && mv hong-kong-2024 && mv current build",
"move-frontpage": "cp -r ./frontpage/* ./build/.",
"prepare-deployment": "git fetch --tags && yarn run clean && yarn run tag:cambridge && yarn run tag:buenos-aires && yarn run tag:berkeley && yarn run tag:current && mkdir build && yarn run move-tags && yarn run move-frontpage",
"prepare-deployment": "git fetch --tags && yarn run clean && yarn run tag:cambridge && yarn run tag:buenos-aires && yarn run tag:berkeley && yarn run tag:hong-kong && mkdir build && yarn run move-tags && yarn run move-frontpage",
"clean": "rm -rf build",
"build": "yarn run clean && reveal-md ./ --static build",
"deploy": "gh-pages -d build",
Expand All @@ -30,6 +32,5 @@
"markdown-link-check": "^3.10.3",
"prettier": "^2.6.2"
},
"packageManager": "[email protected]",
"license": "Unlicensed"
"packageManager": "[email protected]"
}

0 comments on commit 0eda5ad

Please sign in to comment.