-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #586 from tira-io/development
Development
- Loading branch information
Showing
6 changed files
with
97 additions
and
93 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.PHONY: help setup run-develop build-docker clean | ||
|
||
.DEFAULT: help | ||
help: | ||
@echo "make setup" | ||
@echo " setup your environment" | ||
@echo "make run-develop" | ||
@echo " run the tira server" | ||
@echo "make tests" | ||
@echo " run all tests (automatically done in Github Actions on each commit)" | ||
@echo "make vite-build" | ||
@echo " build and test the frontnend client code" | ||
@echo "make clean" | ||
@echo " clean the environment" | ||
|
||
|
||
setup: | ||
@cd application && make setup | ||
|
||
run-develop: | ||
@cd application && make run-develop | ||
|
||
tests: | ||
@cd application && make tests | ||
|
||
vite-build: | ||
@cd application && make vite-build | ||
|
||
clean: | ||
@cd application && make clean | ||
|
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ test/tira-root/ | |
**/*.received.txt | ||
|
||
.data-dumps/ | ||
src/tira/static/tira/frontend-vuetify/ |
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