You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
614 B
22 lines
614 B
2 weeks ago
|
# Project Configuration
|
||
|
|
||
|
## Project Type
|
||
|
- Static Site Generator: Jekyll
|
||
|
- Hosting: GitHub Pages
|
||
|
|
||
|
## Build Commands
|
||
|
- `bundle install`: Install dependencies
|
||
|
- `bundle exec jekyll serve`: Run development server
|
||
|
- `bundle exec jekyll build`: Build site for production
|
||
|
|
||
|
## Important Files
|
||
|
- `_config.yml`: Jekyll configuration
|
||
|
- `Gemfile`: Ruby dependencies
|
||
|
- `_site/`: Build output directory (generated)
|
||
|
- `_posts/`: Blog posts directory
|
||
|
- `_layouts/`: Template layouts
|
||
|
- `_includes/`: Reusable components
|
||
|
|
||
|
## GitHub Pages Settings
|
||
|
- Branch: gh-pages (or main/master, depending on your setup)
|
||
|
- Build Source: Jekyll
|