Skip to content

Commit

Permalink
add app direcotry
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje committed Jul 19, 2024
1 parent cccaff8 commit 9f426d9
Show file tree
Hide file tree
Showing 193 changed files with 32,633 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.wasp/
coverage/
node_modules/
**/.DS_Store

# We ignore env files recognized and used by Wasp.
.env.server
.env.client

# To be extra safe, we by default ignore any files with `.env` extension in them.
# If this is too agressive for you, consider allowing specific files with `!` operator,
# or modify/delete these two lines.
*.env
*.env.*
9 changes: 9 additions & 0 deletions app/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"endOfLine": "lf",
"tabWidth": 2,
"jsxSingleQuote": true,
"printWidth": 120
}
3 changes: 3 additions & 0 deletions app/.waspignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ignore editor tmp files
**/*~
**/#*#
1 change: 1 addition & 0 deletions app/.wasproot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
File marking the root of Wasp project.
Loading

0 comments on commit 9f426d9

Please sign in to comment.