Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T20:10:48.000Z (3 months ago)
- Last Synced: 2024-10-22T14:13:35.752Z (3 months ago)
- Topics: javascript, material-ui, mui, nextjs, portfolio, react, typescript
- Language: TypeScript
- Homepage: https://www.ymyzk.com/
- Size: 6.92 MB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# portfolio
![Build](https://github.com/ymyzk/portfolio/workflows/Build/badge.svg)
## 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.