-
Notifications
You must be signed in to change notification settings - Fork 2
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
Customize rails application #2
Merged
Merged
Conversation
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
rocketnova
force-pushed
the
rocket/init-template-with-name
branch
3 times, most recently
from
May 22, 2024 19:32
88af1d8
to
f1518d8
Compare
rocketnova
changed the title
Rocket/init template with name
Customize rails application
May 22, 2024
--database=postgresql --css=sass --name=TemplateApplicationRails
rocketnova
force-pushed
the
rocket/init-template-with-name
branch
from
May 22, 2024 21:06
fd76fb2
to
171fd3f
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Ticket
Changes
Context for reviewers
This PR customizes the default rails app boilerplate and adds opinionated changes to:
user
anduser_role
scaffoldingTesting
Test installation
mkdir test-rails-template
cd test-rails-template
main
branch:curl https://raw.githubusercontent.com/navapbc/template-application-rails/main/template-only-bin/download-and-install-template.sh | bash -s
main
have been installedgit init && git add -A . && git commit
Test updating
test-rails-template
, update to this branch:curl https://raw.githubusercontent.com/navapbc/template-application-rails/main/template-only-bin/download-and-install-template.sh | bash -s -- rocket/init-template-with-name
git diff
git add -A . && git commit
cd app-rails
make .env
.env
to configure the applicationTest application renaming
test-rails-template
(if you are inapp-rails
, runcd ..
), rename theapp-rails
to a custom project namemy-rails
:curl https://raw.githubusercontent.com/navapbc/template-application-rails/main/template-only-bin/rename-template-app.sh | bash -s -- my-rails app-rails
git diff
git add -A . && git commit
Test running the application native
cd my-rails
make init-native
make start-native
Ctrl-C
to stopmake clean-native
Test running the application in a container
cd my-rails
make init-container
make start-container
Ctrl-C
to stopmake clean-container