Welcome to the uncodebar-microsite repository. This microsite is dedicated to the uncodebar event.
- Built with Tailwind CSS for rapid UI development.
- Live reloading with BrowserSync.
- CSS watching and building with Tailwind and Nodemon.
- Clone the repository:
git clone https://github.com/your-username/uncodebar-microsite.git- Navigate to the project directory:
cd uncodebar-microsite- Install the dependencies: (if you don't want to use the build tool include the style.css in the doc head, and tailwind CDN link )
To include the main stylesheet in your HTML:
<link rel="stylesheet" href="./css/style.css">
<script src="https://cdn.tailwindcss.com"></script>npm install- Start the development server:
npm run startThis will start the BrowserSync server and watch for CSS changes.
watch:css: Watches for changes in thecss/style.cssand rebuilds the CSS using Tailwind.start: Starts the BrowserSync server and watches for CSS changes.
This project is licensed under the MIT License.
<city>.html: The main entry point of the application.css/: Contains the main stylesheetstyle.csswhich is processed by Tailwind CSS.
The project uses Tailwind CSS for styling. Any changes made to css/style.css will be automatically processed by Tailwind and the output will be saved to css/output.css.
To watch for CSS changes, run:
npm run watch:cssTo start the BrowserSync server and watch for CSS changes concurrently, run:
npm run startThis will serve the site on a local server and automatically reload the browser upon changes to the HTML or CSS files.
tailwindcss: A utility-first CSS framework for rapid UI development.browser-sync: Keeps multiple browsers & devices in sync when building websites.concurrently: Run multiple commands concurrently.nodemon: Monitor for any changes in your node.js application and automatically restart the server.