https://github.com/viniciuscestarii/portfolio
📱My web Portfolio made with Next.js, React.js, MUI.
https://github.com/viniciuscestarii/portfolio
bun echarts javascript mui nextjs reactjs typescript
Last synced: about 1 year ago
JSON representation
📱My web Portfolio made with Next.js, React.js, MUI.
- Host: GitHub
- URL: https://github.com/viniciuscestarii/portfolio
- Owner: ViniciusCestarii
- License: mit
- Created: 2023-10-04T20:39:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T16:34:53.000Z (about 2 years ago)
- Last Synced: 2024-05-29T07:43:34.838Z (about 2 years ago)
- Topics: bun, echarts, javascript, mui, nextjs, reactjs, typescript
- Language: TypeScript
- Homepage: https://viniciuscestarii-portfolio.vercel.app/
- Size: 798 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🚀 Welcome to My Portfolio!
Hey there! I'm Vinicius Cestari, a passionate Full Stack Engineer, and this is my portfolio. Here, you’ll find my latest projects, skills, and experiences. Whether you're a recruiter, fellow developer, or just curious about my work, feel free to explore!
Want to run this project locally? Follow the steps below. 👇
## 🛠️ How to Run the Project
To run this project locally, follow these steps:
1. **Environment Variables**:
Ensure to set up any necessary environment variables required for the project. Refer to `.env.example` for guidance.
2. **Clone the repository**:
```bash
git clone https://github.com/ViniciusCestarii/Portfolio.git
cd portfolio
```
3. **Install dependencies**:
Ensure you have Bun installed. Then, install the required packages:
```bash
bun i
```
4. **Run the development server**:
Start the local development server:
```bash
bun dev
```
5. **Open your browser**:
Open your browser and navigate to `http://localhost:3000` to view the portfolio.
### Run with Docker
1. Build to create the image:
```bash
docker build . -t portfolio
```
2. Create the container and run:
```bash
docker run --env-file .env.local -p 3000:3000 portfolio
```
Want to check out the components in isolation? Follow this step:
- **Run the Storybook**:
Start the Storybook server:
```bash
bun storybook
```
To build and start this project locally for production, follow these steps:
1. **Build for production**:
To build the project for production, use the following command:
```bash
bun run build
```
2. **Run the production server**:
After building, you can start the production server with:
```bash
bun start
```
If you encounter any issues or have any questions, feel free to reach out through the contact information provided above. Happy coding!