-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate user code into client and server directories #753
Merged
Merged
Changes from 5 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
4e09b34
Separate ext code to client and server
sodic 86e70fe
Use skeleton in createNewProject and refactor
sodic bb4107e
Refactor Lib.hs to use ExceptT
sodic cc7f353
Fix formatting
sodic 492f247
Pop up returns
sodic d88e204
Extract liftIO and add a do block
sodic 51b426a
Address some review comments
sodic 789dc8f
Add skeleton comment
sodic 6d29601
Extract common CommandError message
sodic 11846e7
Separate skeleton comment into two rows
sodic 4f834ec
Move server and client dirs into src
sodic 385b35c
Simplify maybeToEither
sodic a7753d2
Further refactor Lib.hs
sodic 53dc889
Further simplify skeleton comment
sodic 8388b0f
Merge branch 'main' into filip-change-project-structure
sodic 40f56d2
Add shared code directory to project structure
sodic 936116b
Update e2e test inputs
sodic 1d4e0d8
Update e2e test outputs
sodic dc753f4
Fix formatting
sodic 281c3cf
Fix bug in compile function
sodic a64832c
Change map to fmap in compile function
sodic b30e3de
Fix formatting
sodic f40a8ce
Force git to include empty directories
sodic ddc8682
Remove extra empty line from .gitkeep files
sodic eb29d50
Watch shared directory for changes
sodic 9fa7e9a
Fix regular and e2e tests
sodic 8674887
Fix cli template packaging and update todoApp
sodic 997fe72
Merge remote-tracking branch 'origin/main' into filip-change-project-…
sodic 0cb6369
Add a shared function demo to todoApp
sodic 8bb94cc
Update waspc and e2e tests
sodic 5f47855
Fix compiler warnings and rename function
sodic 54e0b02
Rename mkError to mkParserError
sodic 0ae2631
Remove redundant empty line
sodic c5c326e
Merge remote-tracking branch 'origin/main' into filip-change-project-…
sodic fc76fb6
Fix test warnings
sodic dc29140
Fix formatting
sodic 36e5766
Merge remote-tracking branch 'origin/main' into filip-change-project-…
sodic cd101ab
Merge branch 'main' into filip-change-project-structure
sodic bed02f1
Merge branch 'main' into filip-change-project-structure
sodic f384d14
Fix directory tree watching on wasp start
sodic d4a4c07
Implement review feedback
sodic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/.wasp/ | ||
/.env.server | ||
/.env.client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
File marking the root of Wasp project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore editor tmp files | ||
**/*~ | ||
**/#*# |
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore editor tmp files | ||
**/*~ | ||
**/#*# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I introduced a lot of changes to this file. The best way to review it is probably to avoid looking at the diff altogether.
The main (non-refactor) changes are:
main.wasp
file which depends onProjectInfo
).