https://github.com/ymyzk/portfolio
My portfolio website powered with React
https://github.com/ymyzk/portfolio
javascript material-ui mui nextjs portfolio react typescript
Last synced: 2 months ago
JSON representation
My portfolio website powered with React
- Host: GitHub
- URL: https://github.com/ymyzk/portfolio
- Owner: ymyzk
- Created: 2015-12-10T19:32:47.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-03-10T20:11:18.000Z (2 months ago)
- Last Synced: 2025-03-10T21:23:13.557Z (2 months ago)
- Topics: javascript, material-ui, mui, nextjs, portfolio, react, typescript
- Language: TypeScript
- Homepage: https://www.ymyzk.com/
- Size: 8.81 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# portfolio

## Development
```console
$ npm run dev
```## Deployment
The Docker image only contains the exported files. Please copy files out of the image and use an HTTP server you like.```console
$ image_name=ymyzk/portfolio:latest
$ docker pull $image_name
$ container_id=$(docker create $image_name)
$ docker cp $container_id:/app/out/ ./dest
$ docker rm $container_id
```### Notes
- If you make a change to a file in `/public/static`, please rename it because the previous version may be cached.