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

https://github.com/webmasterdevlin/react-vite-frontend

React Vite for my fastapi-backend repo
https://github.com/webmasterdevlin/react-vite-frontend

azure-ad entra-id react tanstack-router vite

Last synced: 3 months ago
JSON representation

React Vite for my fastapi-backend repo

Awesome Lists containing this project

README

          

# React + TypeScript + Vite

This project was bootstrapped with [Vite](https://vitejs.dev/).

## Available Scripts

- `bun dev` - Start the development server
- `bun build` - Build the project for production
- `bun serve` - Preview the production build
- `bun test` - Run the test suite

## Docker

Login to Docker Hub

```zsh
docker login
```

create a React container

```zsh
docker build -t webmasterdevlin/react-vite: .
```

Test the React container by running it. It should be visible at localhost:8080

```zsh
docker run -p 8080:80 webmasterdevlin/react-vite:
```

Push the container to your Docker Hub account repository

```zsh
docker push webmasterdevlin/react-vite:
```