https://github.com/nirgn975/portfolio
📖 My Website - https://nir.galons.io
https://github.com/nirgn975/portfolio
blog computer-science contribution development infosec pentesting
Last synced: 2 months ago
JSON representation
📖 My Website - https://nir.galons.io
- Host: GitHub
- URL: https://github.com/nirgn975/portfolio
- Owner: nirgn975
- Created: 2016-06-10T12:13:01.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-01-02T09:50:08.000Z (4 months ago)
- Last Synced: 2025-01-02T10:38:37.033Z (4 months ago)
- Topics: blog, computer-science, contribution, development, infosec, pentesting
- Language: Vue
- Homepage: https://nir.galons.io/
- Size: 35.7 MB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Minimal Starter
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm preview# yarn
yarn preview# bun
bun run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.