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
- Host: GitHub
- URL: https://github.com/webmasterdevlin/react-vite-frontend
- Owner: webmasterdevlin
- Created: 2024-04-06T20:58:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-25T06:04:32.000Z (over 1 year ago)
- Last Synced: 2025-07-19T06:56:55.506Z (3 months ago)
- Topics: azure-ad, entra-id, react, tanstack-router, vite
- Language: TypeScript
- Homepage: https://lemon-sea-0d997b303.5.azurestaticapps.net/
- Size: 367 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
```