https://github.com/terdelyi/frontend-starter
Simple starter for front-end projects with Laravel Mix and Tailwind CSS pre-installed
https://github.com/terdelyi/frontend-starter
front-end starter-kit
Last synced: 5 months ago
JSON representation
Simple starter for front-end projects with Laravel Mix and Tailwind CSS pre-installed
- Host: GitHub
- URL: https://github.com/terdelyi/frontend-starter
- Owner: terdelyi
- License: mit
- Created: 2019-10-04T08:07:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:33:22.000Z (over 2 years ago)
- Last Synced: 2025-01-05T04:16:30.630Z (6 months ago)
- Topics: front-end, starter-kit
- Language: JavaScript
- Homepage:
- Size: 1.15 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Front-end Project Starter Kit
### What's this?
It's a simple starter kit for my front-end based projects.
### What's included?
- Laravel Mix
- Tailwind CSS### How to use it?
1. Clone the repo
2. Run `npm install` then `npm run dev`or add this function to your bash profile and use `frontstart `:
```bash
function frontstart {
git clone --depth 1 --branch master [email protected]:terdelyi/frontend-starter.git $1 && cd $1 && rm -rf .git && npm install && npm run dev
}
```The script will deploy the repo, removes .git directory, installs npm packages and runs the dev action to compile the Laravel Mix script.
Open `/public/index.html` in a browser. If you see a text centered horizontally and vertically on the page with colour you're done.
### Can I use it for my project?
Yes of course, this is why it's here.
### Contributions
Bugfixes in the current code are gladly welcome, but I'm going to decline any pull requests which contain additional feature requests as this package made for private purposes.