https://github.com/tmr08c/tmr08c.github.io
Personal blog for Troy Rosenberg built using Gatsby
https://github.com/tmr08c/tmr08c.github.io
blog gatsby gatsby-blog gatsby-site gatsbyjs personal-blog personal-website react typescript
Last synced: about 2 months ago
JSON representation
Personal blog for Troy Rosenberg built using Gatsby
- Host: GitHub
- URL: https://github.com/tmr08c/tmr08c.github.io
- Owner: tmr08c
- License: other
- Created: 2015-02-28T16:40:04.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2023-08-10T00:06:50.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T00:50:05.886Z (about 1 year ago)
- Topics: blog, gatsby, gatsby-blog, gatsby-site, gatsbyjs, personal-blog, personal-website, react, typescript
- Language: TypeScript
- Homepage: https://tmr08c.github.io/
- Size: 41.9 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TroyProg Blog
The personal blog of [@tmr08c](https://github.com/tmr08c/).
## Development
### Branching
This blog is leveraging GitHub pages. Because it follows the `.github.io` repo name pattern, it expects `master` to contain the published version of the site.
From [the docs](https://help.github.com/en/articles/configuring-a-publishing-source-for-github-pages):
> If your site is a User or Organization Page that has a repository named
> .github.io or .github.io, you cannot publish your site's
> source files from different locations. User and Organization Pages that have
> this type of repository name are only published from the master branch.As a result, work is done on `develop`, and `master` is the published version of the site.
### Running the Server
```bash
# develop
npm start# build
npm run build
```## Deployment
```bash
npm run deploy
```## Credits
Built with [Gatsby](https://www.gatsbyjs.org/) - the blazing-fast static site generator for [React](https://facebook.github.io/react/).
Project started using the [gatsby-typescript-starter-blog](https://github.com/frnki/gatsby-typescript-starter-blog) starter project.