Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidebruner/davidebruner.github.io
https://github.com/davidebruner/davidebruner.github.io
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidebruner/davidebruner.github.io
- Owner: DavideBruner
- Created: 2018-12-02T18:16:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-21T12:11:03.000Z (over 1 year ago)
- Last Synced: 2024-11-05T18:13:00.375Z (3 months ago)
- Language: CSS
- Size: 6.03 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Davide Bruner's Portfolio
_View my website [here](https://davidebruner.github.io/)._
The project has been bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) and nothing more.
## ✨ Technology
1. **Next.js**
[Next.js](https://nextjs.org/) is a site generator for React that specializes in fast, static sites, so it's a perfect starting point for a React site hosted on GitHub Pages.
2. **React.js**
[React](https://reactjs.org/) is a flexible, non-opinionated JavaScript library for front-end development.
3. **GitHub Pages**
GitHub offers free hosting for static sites via [GitHub Pages](https://pages.github.com/).
## 📺 To run this site locally1. **Clone the repo**:
```
git clone https://github.com/DavideBruner/davidebruner.github.io portfolio
```
2. **Navigate into the directory**:```
cd portfolio
```
3. **Install the dependencies**:```bash
yarn
# or
npm install
```
4. **Launch the development server**:
```bash
yarn dev
# or
npm run dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## 🚀 Deploy
The static generated site is deployed on Github Pages using the [`peaceiris/actions-gh-pages@v3`](https://github.com/marketplace/actions/github-pages-action) github action. (the `next export` command generates the build into the `./out` directory by default)
Check `.github/workflows/deploy.yml` for more details.