Skip to content

Commit 9cb9321

Browse files
committed
close #40, work on #1, add but not visualize #36, deativate build temporarily
1 parent 0697885 commit 9cb9321

24 files changed

+486
-134
lines changed

.github/workflows/deploy.yml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
1-
name: Deploy to GitHub Pages
2-
3-
on:
4-
workflow_dispatch:
5-
repository_dispatch:
6-
types:
7-
- webhook
8-
push:
9-
branches: 'main'
10-
11-
jobs:
12-
build_site:
13-
runs-on: ubuntu-latest
14-
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v3
17-
18-
- name: Install Node.js
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: 18
22-
cache: npm
23-
24-
- name: Install dependencies
25-
run: npm install
26-
27-
- name: build
28-
env:
29-
BASE_PATH: '/${{ github.event.repository.name }}'
30-
PUBLIC_API_URL: 'https://cms.jstet.net'
31-
run: |
32-
npm run build
33-
34-
- name: Upload Artifacts
35-
uses: actions/upload-pages-artifact@v2
36-
with:
37-
# this should match the `pages` option in your adapter-static options
38-
path: 'build/'
39-
40-
deploy:
41-
needs: build_site
42-
runs-on: ubuntu-latest
43-
44-
permissions:
45-
pages: write
46-
id-token: write
47-
48-
environment:
49-
name: github-pages
50-
url: ${{ steps.deployment.outputs.page_url }}
51-
52-
steps:
53-
- name: Deploy
54-
id: deployment
55-
uses: actions/deploy-pages@v2
1+
# name: Deploy to GitHub Pages
2+
3+
# on:
4+
# workflow_dispatch:
5+
# repository_dispatch:
6+
# types:
7+
# - webhook
8+
# push:
9+
# branches: 'main'
10+
11+
# jobs:
12+
# build_site:
13+
# runs-on: ubuntu-latest
14+
# steps:
15+
# - name: Checkout
16+
# uses: actions/checkout@v3
17+
18+
# - name: Install Node.js
19+
# uses: actions/setup-node@v3
20+
# with:
21+
# node-version: 18
22+
# cache: npm
23+
24+
# - name: Install dependencies
25+
# run: npm install
26+
27+
# - name: build
28+
# env:
29+
# BASE_PATH: '/${{ github.event.repository.name }}'
30+
# PUBLIC_API_URL: 'https://cms.jstet.net'
31+
# run: |
32+
# npm run build
33+
34+
# - name: Upload Artifacts
35+
# uses: actions/upload-pages-artifact@v2
36+
# with:
37+
# # this should match the `pages` option in your adapter-static options
38+
# path: 'build/'
39+
40+
# deploy:
41+
# needs: build_site
42+
# runs-on: ubuntu-latest
43+
44+
# permissions:
45+
# pages: write
46+
# id-token: write
47+
48+
# environment:
49+
# name: github-pages
50+
# url: ${{ steps.deployment.outputs.page_url }}
51+
52+
# steps:
53+
# - name: Deploy
54+
# id: deployment
55+
# uses: actions/deploy-pages@v2

package-lock.json

Lines changed: 53 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@
6262
"@directus/sdk": "^13.0.2",
6363
"@storybook/addon-viewport": "^7.6.14",
6464
"country-emoji": "^1.5.6",
65+
"iso-3166-1-alpha-2": "^1.0.2",
6566
"lowdash": "^1.2.0",
6667
"svelte-select": "^5.8.3",
67-
"sveltekit-search-params": "^2.1.2"
68+
"sveltekit-search-params": "^2.1.2",
69+
"yup": "^1.4.0"
6870
},
6971
"eslintConfig": {
7072
"extends": [

src/lib/data/README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## Framework
2+
3+
### For-Profit
4+
5+
A for-profit organization is a business entity that operates with the objective of generating profits for its owners or shareholders. It functions within the market and follows a profit-driven logic.
6+
7+
## Non profit
8+
9+
A for-profit organization is a business entity that operates with the primary objective of generating profits for its owners or shareholders. It functions within the market and follows a profit-driven logic.
10+
11+
## Governmental
12+
13+
Organizations that are responsible for carrying out various functions and services on behalf of the government to serve the public interest. Governmental organizations typically have a specific mandate or jurisdiction, and they may be involved in areas such as law enforcement, education, healthcare, public infrastructure, regulatory oversight, and more. They are funded by taxpayers and are accountable to the government and, ultimately, the citizens they serve.
14+
15+
## Non-Governmental
16+
17+
Organizations that are responsible for carrying out various functions and services on behalf of the government to serve the public interest. Governmental organizations typically have a specific mandate or jurisdiction, and they may be involved in areas such as law enforcement, education, healthcare, public infrastructure, regulatory oversight, and more. They are funded by taxpayers and are accountable to the government and, ultimately, the citizens they serve.
18+
19+
## Emphasis
20+
21+
### Product Focused
22+
23+
Organizations that develop data-driven products with a primary goal of contributing to the SDGs
24+
25+
### Consulting
26+
27+
Organizations that provide consulting services to other organizations aiming to contribute to the SDGs. They offer expertise and guidance in data-driven strategies.
28+
29+
### Research
30+
31+
Organizations that focus on conducting research and generating evidence to inform stakeholders on how to best contribute to the SDGs.
32+
33+
### Cause Focused
34+
35+
Organizations with in-house data analysis and intelligence teams dedicated to advancing specific causes aligned with the SDGs. Their mission centers on making a positive impact on these causes.
36+
37+
### Media
38+
39+
Media organizations engaged in data journalism to provide stakeholders with information and draw attention to causes related to the SDGs. They use data and storytelling to increase awareness and promote positive change.
40+
41+
### Enabling
42+
43+
Organizations that play a role in enabling the work of other organizations by providing the means for data analysis, such as open data departements.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "&effect",
3+
"cause": [
4+
16
5+
],
6+
"url": "https://www.and-effect.com/",
7+
"description": "Our mission is to make data science an integral part of public and social sector decision-making:\nData at the service of the public good. We create data products for more effective decision-making at the intersection of social science, data science, and software development. ",
8+
"office_locations_country": [
9+
"de"
10+
],
11+
"working_languages": ["de"],
12+
"remote_possible": true,
13+
"initiative_application_possible": true,
14+
"type": {
15+
"framework": "Non-Profit",
16+
"emphasis": "Consulting"
17+
}
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "CorrelAid",
3+
"cause": [4, 17],
4+
"url": "https://www.correlaid.org/",
5+
"description": "CorrelAid is a non-profit organization dedicated to harnessing the power of data for social good. They bridge the gap between data scientists and organizations with a positive impact by offering their services to NGOs, non-profits, and charitable organizations. CorrelAid provides consulting services and educational resources to empower these non-profit entities to make data-driven decisions. Their mission is to leverage data for the betterment of society and empower civil society to utilize data in decision-making processes.",
6+
"office_locations_country": [
7+
"de"
8+
],
9+
"remote_possible": true,
10+
"initiative_application_possible": false,
11+
"type": {
12+
"framework": "Non-Profit",
13+
"emphasis": "Consulting"
14+
},
15+
"working_languages": [
16+
"en", "de"
17+
]
18+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "German Red Cross",
3+
"cause": [3, 10, 16],
4+
"url": "https://drk-wohlfahrt.de/",
5+
"description": "The GRC saves people, helps in emergencies, offers people a community, stands by the poor and needy and oversees international humanitarian law. Their Data Science Hub tests the use of data science methods for social services.",
6+
"office_locations_country": [
7+
"de"
8+
],
9+
"remote_possible": null,
10+
"initiative_application_possible": null,
11+
"type": {
12+
"framework": "Non-Profit",
13+
"emphasis": "Cause-Focused"
14+
},
15+
"working_languages": ["de"]
16+
}
17+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "GIZ Data Lab",
3+
"cause": [17],
4+
"url": "https://www.giz.de/fachexpertise/html/61847.html",
5+
"description": "Unkonventionell, innovativ und experimentell - das GIZ Data Lab versteht sich als eine Plattform, die Denker und Praktiker zusammenbringt um die effektive, faire und verantwortungsvolle Nutzung digitaler Daten in der nachhaltigen Entwicklungszusammenarbeit zu fördern. Seit seiner Gründung im Januar 2019 arbeitet das Team agil und chancenorientiert, erforscht neue Trends und entwickelt zukunftsorientierte Lösungen in den Partnerländern der GIZ. Das GIZ Data Lab-Team führt eine Vielzahl an Experimenten im Data4Development-Bereich durch, die in ihrem zeitlichen und thematischen Umfang begrenzt sind und auf konkreten Arbeitshypothesen basieren.",
6+
"office_locations_country": [
7+
"de"
8+
],
9+
"remote_possible": false,
10+
"initiative_application_possible": null,
11+
"type": {
12+
"framework": "Governmental",
13+
"emphasis": "Cause Focused"
14+
},
15+
"working_languages": ["de"]
16+
}
17+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "Welthungerhilfe",
3+
"cause": [
4+
2
5+
],
6+
"url": "https://www.welthungerhilfe.de/",
7+
"description": "Welthungerhilfe is a large independent aid organization, whose vision is a world where everyone can live a self-determined life with dignity and justice, free from hunger and poverty. Their data culture includes tools and systems for data collection and analysis, developing data visualization prototypes, applying ML techniques, and implementing an automated business intelligence infrastructure.",
8+
"office_locations_country": [
9+
"de"
10+
],
11+
"working_languages": ["de"],
12+
"remote_possible": null,
13+
"initiative_application_possible": null,
14+
"type": {
15+
"framework": "Non-Profit",
16+
"emphasis": "Cause Focused"
17+
}
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "Open Data Institute",
3+
"cause": [17],
4+
"url": "https://www.theodi.org/about-the-odi/",
5+
"description": "The ODI is a non-profit company committed to advancing trust in data across the spectrum - from closed to shared to open data. We work to advance trust in data by providing training, consultancy services, tools and guides - all designed to enable organisations to become more confident and capable in their stewardship and use of data. ",
6+
"office_locations_country": [
7+
"gb"
8+
],
9+
"remote_possible": false,
10+
"initiative_application_possible": true,
11+
"type": {
12+
"framework": "Non-Profit",
13+
"emphasis": "Consulting"
14+
},
15+
"working_languages": [
16+
"en"
17+
]
18+
}

0 commit comments

Comments
 (0)