Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "mint-dapp-verified/deps/concordium-rust-sdk"]
path = mint-dapp-verified/deps/concordium-rust-sdk
url = [email protected]:Concordium/concordium-rust-sdk.git
16 changes: 16 additions & 0 deletions mint-dapp-verified/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.git
**/build
.idea
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

**/target
**/dist
.eslintcache
6 changes: 6 additions & 0 deletions mint-dapp-verified/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONCORDIUM_NODE_PORT=10001
CONCORDIUM_NODE_PORT_GRPC_V1=10003
CONCORDIUM_STAGENET_NODE_PORT=10002
VERIFIER_BACKEND_PORT=8100
SIGN_KEY=6d14927f38b7e840132770a3df9a7776627d95ec2196646c305bc7d89d753a65
VERIFY_KEY=ffc96d517eaa8ead359ee79d3eeb247a2cbc5e0266b6cdae178e8c00bbe087ab
10 changes: 10 additions & 0 deletions mint-dapp-verified/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.eslintcache
node_modules

# OSX
.DS_Store

dist
package.json
!.storybook

28 changes: 28 additions & 0 deletions mint-dapp-verified/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.idea
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

target
dist
.eslintcache
6 changes: 6 additions & 0 deletions mint-dapp-verified/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4
}
13 changes: 13 additions & 0 deletions mint-dapp-verified/.stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": ["stylelint-config-standard-scss", "stylelint-prettier/recommended"],
"plugins": ["stylelint-scss"],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null,
"selector-pseudo-class-no-unknown": null,
"selector-class-pattern": null,
"value-keyword-case": null,
"value-no-vendor-prefix": null
}
}
Loading