Skip to content

Commit

Permalink
Adding Case studies (#94)
Browse files Browse the repository at this point in the history
* add test case study

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* adding newsletter functionality

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* improve case study schema

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* tmp

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* tmp

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* chore: fix validation script

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* optimize ui and ux

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* add gitkeep file

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* fix: deal with the case when there is no folder

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

* chore: linting

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>

---------

Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>
  • Loading branch information
cre8 authored Oct 3, 2024
1 parent cde3aac commit aac65bc
Show file tree
Hide file tree
Showing 96 changed files with 15,383 additions and 9,808 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/newsletter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Monthly Newsletter

on:
schedule:
- cron: '0 0 1 * *' # Runs at midnight on the first day of every month
workflow_dispatch:
inputs:
email:
description: 'Email address to send the newsletter to'

jobs:
generate-newsletter:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Generate newsletter
run: node scripts/newsletter.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }}
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}
EMAIL_RECIPIENT: ${{ github.event.inputs.email }}
4 changes: 3 additions & 1 deletion dependencies/bifold.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"name": "Bifold",
"url": "https://github.com/openwallet-foundation/bifold-wallet",
"description": "Aries Mobile Agent React Native - Part of the Aries Bifold effort to provide SSI capabilities in a production ready app.",
"community": "https://discord.gg/openwalletfoundation"
"community": "https://discord.gg/openwalletfoundation",
"language": "TypeScript",
"license": "Apache 2.0"
}
4 changes: 3 additions & 1 deletion dependencies/credo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"name": "Credo",
"url": "https://github.com/openwallet-foundation/credo-ts",
"description": "Typescript framework for building decentralized identity and verifiable credential solutions",
"community": "https://discord.gg/openwalletfoundation"
"community": "https://discord.gg/openwalletfoundation",
"language": "TypeScript",
"license": "Apache 2.0"
}
4 changes: 3 additions & 1 deletion dependencies/sd-jwt-js.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"name": "SD-JWT-JS",
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js",
"description": "A TypeScript implementation of the Selective Disclosure JWT (SD-JWT) spec.",
"community": "https://discord.gg/openwalletfoundation"
"community": "https://discord.gg/openwalletfoundation",
"language": "TypeScript",
"license": "Apache 2.0"
}
3 changes: 3 additions & 0 deletions viewer/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
EMAIL_ADDRESS=
EMAIL_PASSWORD=
LOCATION='http://localhost:4200/#'
2 changes: 2 additions & 0 deletions viewer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

.env

# Compiled output
/dist
/tmp
Expand Down
32 changes: 9 additions & 23 deletions viewer/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,16 @@
"outputPath": "dist",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": [
"zone.js"
],
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/assets"
],
"assets": ["src/assets"],
"styles": [
"src/theme.scss",
"src/styles.scss"
"src/styles.scss",
"node_modules/prismjs/themes/prism-okaidia.css"
],
"scripts": []
"scripts": ["node_modules/prismjs/prism.js"]
},
"configurations": {
"production": {
Expand Down Expand Up @@ -86,16 +83,10 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": [
"@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss"
Expand All @@ -106,19 +97,14 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
}
},
"cli": {
"analytics": false,
"schematicCollections": [
"@angular-eslint/schematics"
]
"schematicCollections": ["@angular-eslint/schematics"]
}
}
Loading

0 comments on commit aac65bc

Please sign in to comment.