Angular Installation

TailAdmin Angular is built with Angular and Tailwind CSS. Follow the steps below to set it up on your local machine.

The easiest way to get started is by cloning the repository directly from GitHub.

  1. Clone the repository:
    git clone https://github.com/TailAdmin/free-angular-tailwind-dashboard.git
  2. Navigate to the project folder:
    cd free-angular-tailwind-dashboard

Alternative: Download

If you prefer not to use Git, you can download the dashboard template as a ZIP file. After downloading, extract the contents and navigate to the project folder in your terminal.


Working on the Project

Once you are inside the project folder, follow these steps to install dependencies and start the development server.

1. Install Dependencies

Choose your preferred package manager to install the required dependencies:

npm install 

2. Start the Development Server

Run the following command to start the local server and see the dashboard in action:

npm start 

Now you can start making changes! The dashboard will automatically update in your browser at http://localhost:4200.

3. Build for Production

When you’re ready to deploy, run the build command to generate a dist folder containing the optimized assets.

npm run build 

You can then upload the contents of the dist/ng-tailadmin/browser folder to your production server.