Skip to content

Commit

Permalink
Add Login, Register, Forgot Password (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
M-o-h-a-n-S-i-n-g-h authored Jun 26, 2022
1 parent 8731946 commit ddd4af4
Show file tree
Hide file tree
Showing 44 changed files with 17,781 additions and 2,382 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
REACT_APP_DASHX_BASE_URI=https://api.dashx.com/graphql
REACT_APP_DASHX_PUBLIC_KEY=
REACT_APP_DASHX_TARGET_ENVIRONMENT=staging
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@

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

npm-debug.log*
yarn-debug.log*
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build
coverage
10 changes: 10 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"trailingComma": "none",
"printWidth": 100,
"arrowParens": "always",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true,
"endOfLine": "lf"
}
Loading

0 comments on commit ddd4af4

Please sign in to comment.