Skip to content

afgalvan/create-app-templates

Repository files navigation

create-web-app

Basic web-app template.

Requirements


To install template manager (create-app)

curl -sL https://raw.githubusercontent.com/afgalvan/create-app/main/installer.sh | bash -s [package-manager] [branch]

The package-manager argument it's optional, npm is configured by default.

Create a new alias

bash

echo "alias create-app=\"~/.config/create-app/create_app.sh\"" >> ~/.bashrc

zsh

echo "alias create-app=\"~/.config/create-app/create_app.sh\"" >> ~/.zshrc

Manually specific web template download

1. Get the template

Clone the repository with git by:

git clone -b web https://github.com/afgalvan/create-app/.git <new-project-name>

or

gh repo clone afgalvan/create-app <new-project-name> -- -b web

2. Create your own project

Go your project directory:

cd <new-project-name>

Delete the git folder:

rm -rf .git/

Initialize a new git project:

  • In git ^2.28.0:

    git init -b main
  • In older versions:

    git init
    git checkout -b main