An open API service indexing awesome lists of open source software.

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

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)