Skip to content

Commit

Permalink
Added README
Browse files Browse the repository at this point in the history
  • Loading branch information
fccoelho committed Feb 13, 2025
1 parent 1d99aef commit 011f01c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Editing this site
This site is built using Hugo, a static site generator. The site is hosted on GitHub Pages, which automatically builds and deploys the site when changes are pushed to the `master` branch.

## Adding new content
Hugo uses Markdown files to create content for your website. To create a new page, run the following command in your terminal:

```bash
hugo new path/to/new-page.md
```

This will create a new Markdown file in the specified path. Open the file and start editing the content using Markdown syntax.

Build the site: Once you've made your changes, run the following command to build your website:

```bash
hugo
```


This will generate the static HTML files for your website in the public directory.

Preview the site: To preview your website locally, run the following command:

```bash
hugo server
```

This will start a local development server. Open your web browser and navigate to the URL provided by Hugo to see your website.

## Deploying changes
Once you're happy with your changes, commit them to your local repository and push them to GitHub. GitHub Pages will automatically build and deploy your site.

0 comments on commit 011f01c

Please sign in to comment.