This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update backend and add just for commands (#14)
- Loading branch information
1 parent
0e49c9d
commit 7b19762
Showing
60 changed files
with
591 additions
and
782 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,3 +7,9 @@ build/ | |
deploy/ | ||
.DS_Store | ||
/logs/ | ||
generated_ftl_module.go | ||
*.zip | ||
dist/ | ||
go.work | ||
go.work.sum | ||
_ftl/ |
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,24 +1 @@ | ||
# This CODEOWNERS file denotes the project leads | ||
# and encodes their responsibilities for code review. | ||
|
||
# Instructions: At a minimum, replace the '@GITHUB_USER_NAME_GOES_HERE' | ||
# here with at least one project lead. | ||
|
||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
# The format is described: https://github.blog/2017-07-06-introducing-code-owners/ | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @GITHUB_USER_NAME_GOES_HERE | ||
|
||
|
||
# ----------------------------------------------- | ||
# BELOW THIS LINE ARE TEMPLATES, UNUSED | ||
# ----------------------------------------------- | ||
# Order is important. The last matching pattern has the most precedence. | ||
# So if a pull request only touches javascript files, only these owners | ||
# will be requested to review. | ||
# *.js @octocat @github/js | ||
|
||
# You can also use email addresses if you prefer. | ||
# docs/* [email protected] | ||
* @alecthomas @wesbillman @worstell |
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,7 @@ | ||
# Start the FTL backend with hot-reloading | ||
dev: | ||
watchexec -r -e sql -- goreman -logtime=false -f Procfile.dev start | ||
|
||
# Start the example web frontend for online-boutique | ||
web: | ||
cd frontend/web && npm install && npm run dev |
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,4 @@ | ||
ftl: ftl serve --recreate --allow-origins '*' | ||
backend: ftl dev backend/online-boutique/services | ||
mobile_code_gen: ftl schema generate frontend/mobile/templates/ frontend/mobile/lib/api --watch=5s | ||
web_code_gen: ftl schema generate frontend/web/templates/ frontend/web/src/api --watch=5s |
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.