Skip to content

Commit bda9604

Browse files
authored
Merge pull request #223 from Markkos89/feat/t3-siwe
feat: created QuizCompletionChecker Component
2 parents e0e1af7 + ed08550 commit bda9604

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2077
-1599
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
4+
title: ""
55
labels: needs triage, bug
6-
assignees: ''
6+
assignees: ""
77
---
88

99
**Describe the bug** A clear and concise description of what the bug is.

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll.eslint": true
4+
},
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"editor.formatOnSave": true,
7+
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
8+
"typescript.tsdk": "node_modules/typescript/lib",
9+
"typescript.enablePromptUseWorkspaceTsdk": true
10+
}

CONTRIBUTING.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Welcome to the `Developer DAO Academy` project!
2+
3+
This is an open-source project, but at this early stage, we require contributors
4+
to be members of the Developer DAO. Our project uses various Developer DAO
5+
planning and communication tools, such as Discord.
6+
7+
To join the Developer DAO, I'd recommend reading our
8+
[What is DeveloperDAO](https://blog.developerdao.com/what-is-developer-dao)
9+
post.
10+
11+
Once you're a member, to contribute code or content:
12+
13+
- please join us in the Developer DAO Discord (`#d_d-academy` channel)
14+
- setup the project by visiting our [README.md](./README.md)
15+
- add code or content by forking this repo. You can then submit PRs for review.
16+
- peruse our [issues](https://github.com/Developer-DAO/academy/issues) and
17+
[milestones](https://github.com/Developer-DAO/academy/milestones) here in
18+
GitHub
19+
20+
_Note: You do not need to be added to the GitHub Developer DAO organization to
21+
submit PRs._

README/t3-siwe-medium.jpg

-16.7 KB
Binary file not shown.

README/t3-siwe-screenshot.png

-997 KB
Binary file not shown.

lucid.sql

Lines changed: 0 additions & 81 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,10 @@
7171
},
7272
"lint-staged": {
7373
"*.{js,ts,tsx,md,json,yml}": "prettier --write"
74+
},
75+
"engines": {
76+
"node": ">=18",
77+
"npm": "please-use-yarn",
78+
"yarn": ">=1.22"
7479
}
7580
}

0 commit comments

Comments
 (0)