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
- Host: GitHub
- URL: https://github.com/asfer-dev/full-stack-test-frontend
- Owner: Asfer-dev
- Created: 2024-12-01T13:11:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-02T07:36:08.000Z (over 1 year ago)
- Last Synced: 2025-02-12T11:16:11.296Z (over 1 year ago)
- Language: TypeScript
- Size: 131 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```