Skip to content

Instantly share code, notes, and snippets.

@trumbitta
Last active October 2, 2015 20:18
Show Gist options
  • Save trumbitta/2312873 to your computer and use it in GitHub Desktop.
Save trumbitta/2312873 to your computer and use it in GitHub Desktop.
A bunch of bash aliases for not having to remember a lot of different commands while using Entando ( >= 2.4.0.1 )
# Put this in your ~/.bash_aliases
# and exploit the tab completion for
# maximum comfort
#
# Author: William Ghelfi <trumbitta@gmail.com>
#
#Entando
alias entando-start="mvn clean jetty:run"
alias entando-pg-db-backup="ant PG-db-backup"
alias entando-pg-db-full-update="ant PG-db-full-update"
alias entando-edit-filter-dev="editor src/main/filters/filter-development.properties"
alias entando-edit-filter-prod="editor src/main/filters/filter-production.properties"
alias entando-new="mvn archetype:generate -Dfilter=entando"
alias entando-quick-portal-generic="mvn archetype:generate -DarchetypeGroupId=org.entando.entando -DarchetypeArtifactId=entando-archetype-portal-generic -DarchetypeVersion=4.0.0 -DgroupId=myportal -DartifactId=myportal -Dversion=1.0-SNAPSHOT -DinteractiveMode=false -q && cd myportal"
@NKjoep
Copy link

NKjoep commented May 10, 2013

entando-quick-portal-generic="mvn .... -DarchetypeVersion=3.2.0 ...." for all of us ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment