-
Clone this repository locally into your new project (eg. myproject)
$ git clone https://github.com/demingfactor/webpack-tailwind-starter-template yourproject
$ cd yourproject
-
Add templates as a remote and clear it from origin
$ git remote add template git@github.com:demingfactor/webpack-tailwind-starter-template.git
$ git remote rm origin
-
Create your project on github and follow their instructions to setup your new origin.
Visit github.com > New Project > create a new repository
$ git remote add <..per github new project instructions>
-
Update package.json "name" to match your new repository name and commit
-
Install NPM packages
$ npm install
-
Run Start to start the project in Development mode
$ npm run start
To update your repository from the template.
$ git pull template master
If you're running ASDF we've included .tool-versions to make your life easier. If 'npm run build' is not running you probably need to update ASDF like so:
$ asdf plugin-update --all && asdf update && npm i npm