A template to be cloned into an application.
# ubuntu
sudo apt-get install rename
# mac
brew install rename
If not already running MySQL on port 3306:
docker run -d \
--name mysql \
-e MYSQL_ALLOW_EMPTY_PASSWORD=true \
-p 3306:3306 \
mysql:5.7
Apple Silicon:
docker run -d \
--name mysql \
-e MYSQL_ALLOW_EMPTY_PASSWORD=true \
-p 3306:3306 \
mysql/mysql-server:latest-aarch64
cd /tmp && rm -rf clone-me && rm clone
git clone https://github.com/hotpads/clone-me.git
cp clone-me/clone .
Run "clone" with your package and app-name:
clone com.example hello-world