Skip to content

Commit 0c82b0b

Browse files
authored
Update readme.md
1 parent f9735cd commit 0c82b0b

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

readme.md

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
1-
# Simple Tailwind CSS Starter
1+
# Simple Tailwind Starter
22

3-
This is an extremley simple setup to develop Tailwind projects. This will be used in my Tailwind From Scratch course.
3+
This is a simple Tailwind starter project using the Tailwind CLI. It is meant to be used as a starting point for your projects. This is the same setup used in my [Tailwind From Scratch Course](https://www.traversymedia.com/tailwind-css-course).
44

55
## Usage
66

7-
Install dependencies
7+
Clone the repo:
88

9-
```
10-
npm install
9+
```bash
10+
git clone
1111
```
1212

13-
Run Tailwind CLI in watch mode
13+
Install the dependencies:
1414

15-
```
16-
npm run watch
15+
```bash
16+
npm install
1717
```
1818

19-
You can use tailwind classes in any .html files in the root directory
19+
Build or watch the CSS file:
2020

21-
Put any custom CSS that you may have in the **input.css** file
21+
```bash
22+
# Build once
23+
npm run build
2224

23-
Add any config values to the **tailwind.config.js** file
25+
# Watch for changes
26+
npm run watch
27+
```
2428

25-
To build once, run
29+
This will watch the `src/input.css` file and build it to `css/style.css`, which will be your final CSS file.
2630

27-
```
28-
npm run build
29-
```
31+
## License
3032

31-
You only need to deploy your html files and css/style.css
33+
This project is open source and available under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)