No description
- JavaScript 96.6%
- HTML 2.6%
- Dockerfile 0.8%
|
|
||
|---|---|---|
| .github/workflows | ||
| public | ||
| src | ||
| .gitignore | ||
| Dockerfile | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| renovate.json | ||
| vite.config.js | ||
RCS Labs Website
A React + Vite website for RCS Labs, styled with styled-components.
Getting Started
Install dependencies
npm install
Run locally
npm start
Opens at http://localhost:5173
Build for production
npm run build
Output goes to the dist/ folder — deploy that folder to any static host (Netlify, Vercel, Render, etc).
Deploying with Docker
docker build -t rcs-labs .
docker run -p 8080:80 rcs-labs
Then visit http://localhost:8080
Project Structure
rcs-labs/
├── index.html # HTML entry point (Vite requires this at root)
├── vite.config.js # Vite configuration
├── src/
│ ├── index.jsx # React entry point
│ ├── styles.js # Shared styled-components and global styles
│ ├── App.jsx # Home page component
│ ├── Privacy.jsx # Privacy policy page
│ └── Terms.jsx # Terms page
├── Dockerfile
└── package.json