Skip to content

Commit

Permalink
Merge branch 'staging' into add-lending-pond-showcase
Browse files Browse the repository at this point in the history
  • Loading branch information
rphair committed Oct 28, 2022
2 parents 83ed91c + 50d76bd commit 2ddabb0
Show file tree
Hide file tree
Showing 42 changed files with 8,825 additions and 286 deletions.
7 changes: 7 additions & 0 deletions .github/actions/yarn-build/Dockerfile
@@ -0,0 +1,7 @@
FROM node:lts-alpine

RUN apk add --no-cache git
RUN npm i -g --force yarn
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]
28 changes: 28 additions & 0 deletions .github/actions/yarn-build/README.md
@@ -0,0 +1,28 @@
# Build Yarn Action

This github actions provides arbirary actions for the yarn cli command.
The main reason for writing this was that i needed to add a fix for gits
safe directory thing, see entrypoint.sh.

The code mostly is taken from https://github.com/Borales/actions-yarn
but simplified. Mostly removed the npm auth token stuff, which we wont need
in the near future. And then the original action might have a fix for
the git safedir issue built in so we might want to remove this action
alltogether.


To use this action
name: CI
on: [push]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/yarn-build
with:
cmd: install # will run `yarn install` command
- uses: ./.github/actions/yarn-build
with:
cmd: build # will run `yarn build` command
14 changes: 14 additions & 0 deletions .github/actions/yarn-build/action.yml
@@ -0,0 +1,14 @@
name: "GitHub Action for Yarn"
description: "Wraps the yarn CLI to enable common yarn commands"
branding:
icon: "package"
color: "blue"
inputs:
cmd:
description: "Yarn command"
required: true
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.cmd }}
8 changes: 8 additions & 0 deletions .github/actions/yarn-build/entrypoint.sh
@@ -0,0 +1,8 @@
#!/bin/sh
set -e

# had to add this line due to changes within git
# see: https://github.com/actions/runner/issues/2033
git config --global --add safe.directory /github/workspace

sh -c "yarn $*"
23 changes: 23 additions & 0 deletions .github/workflows/yarn-build.yml
@@ -0,0 +1,23 @@
name: "Yarn Build"

on:
push:
pull_request:

jobs:
build:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/actions/yarn-build
with:
cmd: install

- name: Build
uses: ./.github/actions/yarn-build
with:
cmd: build
79 changes: 53 additions & 26 deletions CHANGELOG.md
Expand Up @@ -3,7 +3,7 @@

All of the merged PRs in February

#### PRs
#### PRs: 6


- Cleaned up. by ([@katomm](https://github.com/katomm)) in [#1](https://github.com/cardano-foundation/developer-portal/pull/1)
Expand All @@ -21,7 +21,7 @@ All of the merged PRs in February

All of the merged PRs in March

#### PRs
#### PRs: 13


- Designpatch by ([@katomm](https://github.com/katomm)) in [#7](https://github.com/cardano-foundation/developer-portal/pull/7)
Expand All @@ -47,7 +47,7 @@ All of the merged PRs in March

All of the merged PRs in April

#### PRs
#### PRs: 21


- Content by ([@katomm](https://github.com/katomm)) in [#20](https://github.com/cardano-foundation/developer-portal/pull/20)
Expand Down Expand Up @@ -83,7 +83,7 @@ All of the merged PRs in April

All of the merged PRs in May

#### PRs
#### PRs: 15


- Update Project Funding and Cardano Token Registry Sections by ([@Nazeim](https://github.com/Nazeim)) in [#46](https://github.com/cardano-foundation/developer-portal/pull/46)
Expand Down Expand Up @@ -114,7 +114,7 @@ All of the merged PRs in May

All of the merged PRs in June

#### PRs
#### PRs: 24


- Marketing a stake pool by ([@Nazeim](https://github.com/Nazeim)) in [#63](https://github.com/cardano-foundation/developer-portal/pull/63)
Expand All @@ -140,7 +140,7 @@ All of the merged PRs in June
- Revert "Upgrade Docusaurus to 2.0.0-beta.2" by ([@katomm](https://github.com/katomm)) in [#84](https://github.com/cardano-foundation/developer-portal/pull/84)
- Rust lib, menu structure, minor fixes by ([@katomm](https://github.com/katomm)) in [#85](https://github.com/cardano-foundation/developer-portal/pull/85)
- Add .netlify.toml file with redirect example by ([@katomm](https://github.com/katomm)) in [#86](https://github.com/cardano-foundation/developer-portal/pull/86)
- Simplify the redirects. by ([@katomm](https://github.com/katomm)) in [#87](https://github.com/cardano-foundation/developer-portal/pull/87)
- Simplify the redirects. by ([@katomm](https://github.com/katomm)) in [#87](https://github.com/cardano-foundation/developer-portal/pull/87)

#### Committers: 4

Expand All @@ -152,7 +152,7 @@ All of the merged PRs in June

All of the merged PRs in July

#### PRs
#### PRs: 80


- Revise Cardano Token Registry by ([@katomm](https://github.com/katomm)) in [#88](https://github.com/cardano-foundation/developer-portal/pull/88)
Expand Down Expand Up @@ -182,7 +182,6 @@ All of the merged PRs in July
- Temporary fix for the cache by ([@katomm](https://github.com/katomm)) in [#112](https://github.com/cardano-foundation/developer-portal/pull/112)
- Added Google Tag Manager plugin by ([@Mercurial](https://github.com/Mercurial)) in [#113](https://github.com/cardano-foundation/developer-portal/pull/113)
- Google Tag Manager plugin deployment by ([@Mercurial](https://github.com/Mercurial)) in [#114](https://github.com/cardano-foundation/developer-portal/pull/114)

- Add DEADPXLZ to the the Cardano Developer portal project showcase page by ([@DEADPXLZ](https://github.com/DEADPXLZ)) in [#117](https://github.com/cardano-foundation/developer-portal/pull/117)
- chore(builder-tools): typo by ([@mmahut](https://github.com/mmahut)) in [#118](https://github.com/cardano-foundation/developer-portal/pull/118)
- Crypto-specific Haskell learning resource and typos by ([@tweakch](https://github.com/tweakch)) in [#119](https://github.com/cardano-foundation/developer-portal/pull/119)
Expand Down Expand Up @@ -266,7 +265,7 @@ All of the merged PRs in July

All of the merged PRs in August

#### PRs
#### PRs: 37


- Add Pigy Token to the Showcase by ([@PrinzMonty](https://github.com/PrinzMonty)) in [#128](https://github.com/cardano-foundation/developer-portal/pull/128)
Expand Down Expand Up @@ -336,7 +335,7 @@ All of the merged PRs in August

All of the merged PRs in September

#### PRs
#### PRs: 27


- Fix typo in portal style guide by ([@bcbowen](https://github.com/bcbowen)) in [#269](https://github.com/cardano-foundation/developer-portal/pull/269)
Expand Down Expand Up @@ -388,7 +387,7 @@ All of the merged PRs in September

All of the merged PRs in October

#### PRs
#### PRs: 24


- Fix small typos in minting.md by ([@Luxroy](https://github.com/Luxroy)) in [#334](https://github.com/cardano-foundation/developer-portal/pull/334)
Expand Down Expand Up @@ -439,7 +438,7 @@ All of the merged PRs in October

All of the merged PRs in November

#### PRs
#### PRs: 26


- Update minting-nfts.md by ([@inspiraluna](https://github.com/inspiraluna)) in [#382](https://github.com/cardano-foundation/developer-portal/pull/382)
Expand Down Expand Up @@ -491,7 +490,7 @@ All of the merged PRs in November

All of the merged PRs in December

#### PRs
#### PRs: 16


- Explain base16 encoding of token names by ([@honungsburk](https://github.com/honungsburk)) in [#428](https://github.com/cardano-foundation/developer-portal/pull/428)
Expand Down Expand Up @@ -528,7 +527,7 @@ All of the merged PRs in December

All of the merged PRs in January

#### PRs
#### PRs: 34


- Added Catalyt Fund 6 results by ([@rcmorano](https://github.com/rcmorano)) in [#455](https://github.com/cardano-foundation/developer-portal/pull/455)
Expand Down Expand Up @@ -594,7 +593,7 @@ All of the merged PRs in January

All of the merged PRs in February

#### PRs
#### PRs: 22


- Bump simple-get from 4.0.0 to 4.0.1 by ([@dependabot](https://github.com/dependabot)) in [#500](https://github.com/cardano-foundation/developer-portal/pull/500)
Expand Down Expand Up @@ -637,7 +636,7 @@ All of the merged PRs in February

All of the merged PRs in March

#### PRs
#### PRs: 25


- Adding MermADA Minting by ([@MermADA](https://github.com/MermADA)) in [#527](https://github.com/cardano-foundation/developer-portal/pull/527)
Expand Down Expand Up @@ -685,7 +684,7 @@ All of the merged PRs in March

All of the merged PRs in April

#### PRs
#### PRs: 31


- documented a Create React App example under Serialization-Lib section in Get Started by ([@dynamicstrategies](https://github.com/dynamicstrategies)) in [#566](https://github.com/cardano-foundation/developer-portal/pull/566)
Expand Down Expand Up @@ -736,7 +735,7 @@ All of the merged PRs in April

All of the merged PRs in May

#### PRs
#### PRs: 31


- Bump async from 2.6.3 to 2.6.4 by ([@dependabot](https://github.com/dependabot)) in [#603](https://github.com/cardano-foundation/developer-portal/pull/603)
Expand Down Expand Up @@ -790,7 +789,7 @@ All of the merged PRs in May

All of the merged PRs in June

#### PRs
#### PRs: 7


- Add testnet explorer by ([@cardanians](https://github.com/cardanians)) in [#671](https://github.com/cardano-foundation/developer-portal/pull/671)
Expand All @@ -814,7 +813,7 @@ All of the merged PRs in June

All of the merged PRs in July

#### PRs
#### PRs: 37


- Update docusaurus.config.js by ([@sanskys](https://github.com/sanskys)) in [#658](https://github.com/cardano-foundation/developer-portal/pull/658)
Expand Down Expand Up @@ -879,7 +878,7 @@ All of the merged PRs in July

All of the merged PRs in August

#### PRs
#### PRs: 21


- Move CVM from showcase to builder tools by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#716](https://github.com/cardano-foundation/developer-portal/pull/716)
Expand Down Expand Up @@ -916,11 +915,11 @@ All of the merged PRs in August
- sourabhxyz ([@sourabhxyz](https://github.com/sourabhxyz))
- klntsky ([@klntsky](https://github.com/klntsky))

## 2022.36.0 (2022-09-12)
## 2022.38.0 (2022-09-30)

All of the merged PRs in Septemeber

#### PRs
#### PRs: 36


- Add cardano-transaction-lib by ([@klntsky](https://github.com/klntsky)) in [#750](https://github.com/cardano-foundation/developer-portal/pull/750)
Expand All @@ -938,8 +937,29 @@ All of the merged PRs in Septemeber
- Add NFT Gift Card Creator showcase by ([@minolinpwork](https://github.com/minolinpwork)) in [#754](https://github.com/cardano-foundation/developer-portal/pull/754)
- Add Book Token showcase by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#725](https://github.com/cardano-foundation/developer-portal/pull/725)
- Fix cardano-node build instructions on recent MacOS M1 by ([@KtorZ](https://github.com/KtorZ)) in [#769](https://github.com/cardano-foundation/developer-portal/pull/769)

#### Committers: 8
- Update weekly report 09.14 by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#773](https://github.com/cardano-foundation/developer-portal/pull/773)
- Rework labels & filters on builder-tools by ([@KtorZ](https://github.com/KtorZ)) in [#767](https://github.com/cardano-foundation/developer-portal/pull/767)
- add voteaire to showcase by ([@thenic95](https://github.com/thenic95)) in [#775](https://github.com/cardano-foundation/developer-portal/pull/775)
- Add Cardano Signer builder tool by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#774](https://github.com/cardano-foundation/developer-portal/pull/774)
- cardano-signer: replace narrative thumbnail with logo by ([@rphair](https://github.com/rphair)) in [#777](https://github.com/cardano-foundation/developer-portal/pull/777)
- Add StakePool Operator Scripts builder tool by ([@rphair](https://github.com/rphair)) in [#779](https://github.com/cardano-foundation/developer-portal/pull/779)
- Add Github Changelog by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#776](https://github.com/cardano-foundation/developer-portal/pull/776)
- Modify maximum Changelog users icons from 10 to 20 before unfold option by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#781](https://github.com/cardano-foundation/developer-portal/pull/781)
- Various open graph images by ([@katomm](https://github.com/katomm)) in [#788](https://github.com/cardano-foundation/developer-portal/pull/788)
- Fix dates and weeks in Changelog by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#790](https://github.com/cardano-foundation/developer-portal/pull/790)
- Open graph images patch by ([@katomm](https://github.com/katomm)) in [#795](https://github.com/cardano-foundation/developer-portal/pull/795)
- Add September 2022 Developer Interview with ADAO by ([@thenic95](https://github.com/thenic95)) in [#794](https://github.com/cardano-foundation/developer-portal/pull/794)
- Add why contribute section by ([@weqanhet](https://github.com/weqanhet)) in [#793](https://github.com/cardano-foundation/developer-portal/pull/793)
- Remove weekly report markdown file (Replaced by Changelog) by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#789](https://github.com/cardano-foundation/developer-portal/pull/789)
- Update project structure documentation by ([@fill-the-fill](https://github.com/fill-the-fill)) in [#785](https://github.com/cardano-foundation/developer-portal/pull/785)
- Update hydra links for node binaries by ([@zliu41](https://github.com/zliu41)) in [#799](https://github.com/cardano-foundation/developer-portal/pull/799)
- Updated script for getting pool statistic by ([@os11k](https://github.com/os11k)) in [#798](https://github.com/cardano-foundation/developer-portal/pull/798)
- added Loxe to careers page by ([@manonthemat](https://github.com/manonthemat)) in [#796](https://github.com/cardano-foundation/developer-portal/pull/796)
- Add "known problems"-section to "how to contribute?" by ([@katomm](https://github.com/katomm)) in [#792](https://github.com/cardano-foundation/developer-portal/pull/792)
- remove adaex and adapools from Showcase by ([@rphair](https://github.com/rphair)) in [#800](https://github.com/cardano-foundation/developer-portal/pull/800)
- Add cexplorer by ([@cexplorer](https://github.com/cexplorer)) in [#745](https://github.com/cardano-foundation/developer-portal/pull/745)

#### Committers: 15

- klntsky ([@klntsky](https://github.com/klntsky))
- fill-the-fill ([@fill-the-fill](https://github.com/fill-the-fill))
Expand All @@ -948,4 +968,11 @@ All of the merged PRs in Septemeber
- HT ([@HT](https://github.com/HT))
- rvcas ([@rvcas](https://github.com/rvcas))
- minolinpwork ([@minolinpwork](https://github.com/minolinpwork))
- KtorZ ([@KtorZ](https://github.com/KtorZ))
- KtorZ ([@KtorZ](https://github.com/KtorZ))
- thenic95 ([@thenic95](https://github.com/thenic95))
- rphair ([@rphair](https://github.com/rphair))
- weqanhet ([@weqanhet](https://github.com/weqanhet))
- zliu41 ([@zliu41](https://github.com/zliu41))
- os11k ([@os11k](https://github.com/os11k))
- manonthemat ([@manonthemat](https://github.com/manonthemat))
- cexplorer ([@cexplorer](https://github.com/cexplorer))
2 changes: 1 addition & 1 deletion blog/2022-09-23-september.md
Expand Up @@ -7,7 +7,7 @@ author_url: https://github.com/cardano-foundation
author_image_url: https://avatars.githubusercontent.com/u/37078161?s=200&v=4
tags: [DAO, open source, interview]
description: "We interviewed Allusian, one of the co-founders of ADAO about various projects the ADAO community is building and how they contribute to the Cardano ecosystem."
image: https://developers.cardano.org/img/og-blog-adao.png
image: https://developers.cardano.org/img/og/og-blog-adao.png
---

import ThemedImage from '@theme/ThemedImage';
Expand Down
7 changes: 6 additions & 1 deletion docs/get-started/cardano-developer-community.md
Expand Up @@ -43,4 +43,9 @@ CIP meetings discuss Cardano Improvement Proposals every other week. Join Editor
Best practice workgroup on Telegram for stake pool operators. This group is hectic. A good resource to search for answers.

[**forum.cardano.org**](https://forum.cardano.org/c/staking-delegation/156)
If you care about well structured, long format discussions, visit the stake pool operator categories on [forum.cardano.org](https://forum.cardano.org/c/staking-delegation/156).
If you care about well structured, long format discussions, visit the stake pool operator categories on [forum.cardano.org](https://forum.cardano.org/c/staking-delegation/156).

## Developer Surveys

[**Developer Ecosystem Survey**](https://cardano-foundation.github.io/state-of-the-developer-ecosystem/2022)
For the first time ever, an annual survey to assess the state of the Cardano developer ecosystem was conducted. This survey comes as part of our commitment to both empower the Cardano community and foster the open source maturity of the Cardano ecosystem.
1 change: 1 addition & 0 deletions docs/get-started/installing-cardano-node.md
Expand Up @@ -290,6 +290,7 @@ brew install libtool
brew install autoconf
brew install automake
brew install pkg-config
brew install openssl
```

#### You will need to install llvm in case you are using M1
Expand Down

0 comments on commit 2ddabb0

Please sign in to comment.