https://github.com/mathieumarthy/portfolio
https://github.com/mathieumarthy/portfolio
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathieumarthy/portfolio
- Owner: MathieuMarthy
- Created: 2026-02-01T10:14:02.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-11T21:40:47.000Z (4 months ago)
- Last Synced: 2026-02-12T05:42:51.978Z (4 months ago)
- Language: JavaScript
- Size: 2.02 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Portfolio
This is my portfolio. It contains a brief presentation about me, my experiences and my skills.
There are also a list of projects that I have worked on, with links to their repositories.
My portfolio is available at https://mathieu.dzqdzq.net
## Stack of the portfolio
- Vue.js with Nuxt
- Tailwind CSS
- Bun
Feel free to fork this repository and use it as a template for your own portfolio.
## How to run the portfolio
### Use the Docker image
1. Build the Docker image:
```bash
docker build -t portfolio .
```
2. Run the Docker container:
```bash
docker run -d -p 3000:3000 -e WEBHOOK_URL="YOUR_WEBHOOK_URL" portfolio
```
### Run locally
1. Install dependencies:
```bash
bun install
```
2. Create a `.env` file in the root of the project and add your webhook URL:
```
WEBHOOK_URL=YOUR_WEBHOOK_URL
```
3. Run the development server:
```bash
bun run dev
```
## License
This project is licensed under the WTFPL License. See the [LICENSE](LICENSE) file for details.
🐢