Skip to content

Commit 60048b3

Browse files
committed
Update Makefile for answering test question
1 parent 194c812 commit 60048b3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install_phoenix:
66

77
create_phoenix_project:
88
mix phx.new ${PROJECT_DIRECTORY} ${OPTIONS}
9-
9+
1010
create_mix_project:
1111
mix new ${PROJECT_DIRECTORY} ${OPTIONS}
1212

@@ -16,14 +16,19 @@ create_mix_project:
1616
# Y - in response to Do you want to generate the Github Action workflows: Deploy to Heroku?
1717
# Y - in response to Do you want to generate the .github/.workflow/README file?
1818
# Y - in response to Do you want to publish a Github Wiki for this project? You'd need to manually create the first Github Wiki Page and set the GH_TOKEN and GH_EMAIL secret for this to properly function.
19+
# Y - in response to Do you want to generate the Github Action to deploy to AWS ECS?
1920
# Y - in response to Would you like to add the Oban addon?
2021
# Y - in response to Would you like to add the ExVCR addon?
2122
common_addon_prompts = Y\nY\nY\nY\nY\nY\nY\nY\n
2223

24+
<<<<<<< HEAD
2325
# Y - in response to Would you like to add the SVG Sprite addon?
2426
web_addon_prompts = Y\n
27+
=======
28+
web_addon_prompts =
29+
>>>>>>> 0ff285f (Update Makefile for answering test question)
2530

26-
api_addon_prompts =
31+
api_addon_prompts =
2732

2833
# Y - in response to Would you like to add the SVG Sprite addon?
2934
live_addon_prompts = Y\n
@@ -33,6 +38,7 @@ live_addon_prompts = Y\n
3338
# Y - in response to Do you want to generate the Github Action workflow: Test?
3439
# Y - in response to Do you want to generate the .github/.workflow/README file?
3540
# Y - in response to Do you want to publish a Github Wiki for this project? You'd need to manually create the first Github Wiki Page and set the GH_TOKEN and GH_EMAIL secret for this to properly function.
41+
# N - in response to Do you want to generate the Github Action to deploy to AWS ECS?
3642
# Y - in response to Would you like to add the Mimic addon?
3743
mix_addon_prompts = Y\nY\nY\nY\nY\nY\n
3844

@@ -53,7 +59,7 @@ apply_phoenix_template:
5359
elif [ $(VARIANT) = live ]; then \
5460
printf "${common_addon_prompts}${web_addon_prompts}${live_addon_prompts}${post_setup_addon_prompts}" | mix nimble_template.gen --live; \
5561
fi;
56-
62+
5763
apply_mix_template:
5864
cd ${PROJECT_DIRECTORY} && \
5965
echo '{:nimble_template, path: "../", only: :dev, runtime: false}' > nimble_template.txt && \

0 commit comments

Comments
 (0)