https://github.com/dennislo/dennislo.github.io
Personal homepage
https://github.com/dennislo/dennislo.github.io
gatsby homepage
Last synced: 4 months ago
JSON representation
Personal homepage
- Host: GitHub
- URL: https://github.com/dennislo/dennislo.github.io
- Owner: dennislo
- Created: 2020-07-15T21:27:05.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-06-26T14:51:08.000Z (about 2 years ago)
- Last Synced: 2025-02-03T18:32:23.365Z (5 months ago)
- Topics: gatsby, homepage
- Language: TypeScript
- Homepage: https://dlo.wtf
- Size: 5.51 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Personal homepage: Who is DLO?## ๐ป Development
### Running locally
1. **Run server**Navigate into your new siteโs directory and start it up.
```shell
cd gatsby-site/
npm run develop
```2. **Open the code and start customizing!**
Your site is now running at http://localhost:8000!
Edit `src/pages/index.tsx` to see your site update in real-time!
### Making changes
All edits to be committed to the `develop` branch. Creating features branches
is useful for larger changes.## ๐ Deployment
### Deploying latest
**NOTE:** Do not commit directly to the `master` branch
as this is the production branch for github pages.Run the following to deploy the latest changes to production:
```shell
git checkout develop
npm run deploy
```