Big Version Change & Move to Gitea
This commit is contained in:
70
README.md
70
README.md
@@ -1,36 +1,64 @@
|
||||
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
|
||||
# My Portfolio
|
||||
|
||||
## Getting Started
|
||||
Personal portfolio built with Next.js, React, TypeScript, and Tailwind CSS.
|
||||
|
||||
First, run the development server:
|
||||
## What It Includes
|
||||
|
||||
- Hero section with typing intro
|
||||
- Work experience and skills sections
|
||||
- Uptime and activity panels
|
||||
- Project and mini-project showcases
|
||||
- Contact page and admin page
|
||||
|
||||
## Development
|
||||
|
||||
Install dependencies:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
# or
|
||||
pnpm dev
|
||||
# or
|
||||
bun dev
|
||||
pnpm install
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
Run the development server:
|
||||
|
||||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
|
||||
```bash
|
||||
pnpm dev
|
||||
```
|
||||
|
||||
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
|
||||
Open [http://localhost:3000](http://localhost:3000) in your browser.
|
||||
|
||||
## Learn More
|
||||
## Production Build
|
||||
|
||||
To learn more about Next.js, take a look at the following resources:
|
||||
Create a production build:
|
||||
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||
```bash
|
||||
pnpm build
|
||||
```
|
||||
|
||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
|
||||
Start the production server locally:
|
||||
|
||||
## Deploy on Vercel
|
||||
```bash
|
||||
pnpm start
|
||||
```
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
## Docker
|
||||
|
||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
||||
This project includes a standalone Docker image setup.
|
||||
|
||||
Build the image:
|
||||
|
||||
```bash
|
||||
docker build -t my-portfolio:latest .
|
||||
```
|
||||
|
||||
Run with Docker Compose:
|
||||
|
||||
```bash
|
||||
docker compose up --build
|
||||
```
|
||||
|
||||
The app will be available on port `6756` via `docker-compose.yml`.
|
||||
|
||||
## Notes
|
||||
|
||||
- `next.config.ts` uses `output: "standalone"` so the Docker image can ship a minimal runtime.
|
||||
- The activity graph on the home page is loaded from a remote SVG source.
|
||||
|
||||
Reference in New Issue
Block a user