-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
0 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
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,45 @@ | ||
-include Makefile.perso.mk | ||
|
||
########################### | ||
# colors # | ||
########################### | ||
PRINT_COLOR = printf | ||
COLOR_SUCCESS = \033[1;32m | ||
COLOR_DEBUG = \033[36m | ||
COLOR_RESET = \033[0m | ||
|
||
########################### | ||
# Variables # | ||
########################### | ||
|
||
DIR_BIN = venv/bin/ | ||
|
||
########################### | ||
# Run project # | ||
########################### | ||
|
||
.PHONY: serve-dev | ||
serve-dev: | ||
$(call display_cmd, Start dev server) | ||
$(DIR_BIN)flask --app ./atlas/app run --debug -h 0.0.0.0 | ||
|
||
########################### | ||
# Manage translations # | ||
########################### | ||
|
||
.PHONY: messages | ||
messages: | ||
$(call display_cmd, Extract translations) | ||
$(DIR_BIN)pybabel extract -F atlas/babel.cfg -o atlas/messages.pot atlas | ||
$(DIR_BIN)pybabel update -i atlas/messages.pot -d atlas/translations | ||
|
||
.PHONY: compile_messages | ||
compile_messages: | ||
$(call display_cmd, Apply translations) | ||
$(DIR_BIN)pybabel compile -d atlas/translations | ||
|
||
define display_cmd | ||
@$(PRINT_COLOR) "\n$(COLOR_SUCCESS) ########################## $(COLOR_RESET)\n" | ||
@$(PRINT_COLOR) "$(COLOR_SUCCESS) ### $(1) $(COLOR_RESET)\n" | ||
@$(PRINT_COLOR) "$(COLOR_SUCCESS) ########################## $(COLOR_RESET)\n\n" | ||
endef |
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