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

https://github.com/asfer-dev/full-stack-test-frontend


https://github.com/asfer-dev/full-stack-test-frontend

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Full Stack Test App

This is a React application bootstrapped with [Vite](https://vitejs.dev/). Vite provides a fast and optimized development experience for modern web applications.

## Prerequisites

Ensure you have the following installed on your system:

- [Node.js](https://nodejs.org/) (v14.18.0 or higher)
- [npm](https://www.npmjs.com/) or [Yarn](https://yarnpkg.com/)

## Getting Started

Follow these steps to run the project locally:

### 1. Clone the Repository

Clone this repository to your local machine:

```bash
git clone https://github.com/Asfer-dev/full-stack-test-frontend.git
cd full-stack-test-frontend
```

### 2. Install Dependencies

Install the project dependencies using npm or yarn:

```bash
# Using pnpm
pnpm install

```

### 3. Start the Development Server

Run the development server to preview the application:

```bash
# Using pnpm
pnpm run dev

The development server will start, and the application will be available at http://localhost:5173.
```

### 4. Build for Production

To create a production-ready build of the application:

```bash
# Using pnpm
pnpm run build

The output will be available in the dist directory.
```

### 5. Preview the Production Build

To preview the production build locally:

```bash
# Using pnpm
pnpm run preview

```