https://github.com/ddddami/tw-starter-app
A simple starter app for tailwind apps
https://github.com/ddddami/tw-starter-app
Last synced: 5 months ago
JSON representation
A simple starter app for tailwind apps
- Host: GitHub
- URL: https://github.com/ddddami/tw-starter-app
- Owner: ddddami
- Created: 2023-11-24T15:26:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-24T16:49:19.000Z (over 2 years ago)
- Last Synced: 2025-01-22T06:36:11.728Z (over 1 year ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Tailwind App Starter
This is a simple starter template for Tailwind CSS projects, designed to kickstart your development process with minimal setup.
## Features
- **Minimal Setup**: Get started with Tailwind CSS quickly and easily.
- **Ready-to-Use**: Includes basic file structure for immediate development.
- **Customization**: Add your own styles and components effortlessly.
## Usage
1. **Clone Repository**:
```bash
git clone https://github.com/your-username/simple-tailwind-starter.git
```
2. **Install Dependencies**
```bash
cd simple-tailwind-starter
# If using npm
npm install
# If using yarn
yarn
```
3. **Start Development**
- You can add your tailwind styles in your html or modify input.css with your custom styles.
- Run `npm run watch` (or yarn watch) to watch for changes and build Tailwind CSS.
3. **Build for Production**
```bash
npm run build
# or
yarn build
```
4. **Folder Structure**
```
tw-starter-app/
│
├── src/
│ ├── css/
│ │ └── styles.css # Where you input your custome styles
│ └── index.html # HTML file for your project
├── build/
│ └── styles.css # Compiled Tailwind CSS file (generated)
├── node_modules/ # Node.js dependencies (generated)
├── package.json # Project configuration and scripts
└── .gitignore # List of files to be ignored in version control
```
**Attributes:** [Damilola Osunsawo](https://www.github.com/ddddami)