Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dennislo/dennislo.github.io
Personal homepage
https://github.com/dennislo/dennislo.github.io
gatsby homepage
Last synced: about 1 month ago
JSON representation
Personal homepage
- Host: GitHub
- URL: https://github.com/dennislo/dennislo.github.io
- Owner: dennislo
- Created: 2020-07-15T21:27:05.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-06-26T14:51:08.000Z (over 1 year ago)
- Last Synced: 2024-10-31T05:52:17.917Z (2 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
```