Skip to content

fission/fission.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5dca33c · Jan 25, 2025
Oct 30, 2023
Aug 8, 2022
Jan 25, 2025
Sep 23, 2024
Jun 24, 2017
Sep 13, 2024
Oct 4, 2024
Sep 30, 2021
Dec 28, 2021
Aug 10, 2022
Sep 23, 2024
Oct 5, 2021
Nov 6, 2023
Oct 30, 2023
Jan 25, 2025
Jan 25, 2025
Jan 25, 2025
Jan 25, 2025
Sep 23, 2024
Sep 23, 2024

Repository files navigation

Fission Site Source Repo

This is the source for the fission.io website.

Repo organization

This is a hugo statically-generated site, hosted on netlify. The site is automatically built by netlify (see netlify.toml and build.sh).

All site content is stored in the content directory in markdown format.

content/en
├── _index.html  # Landing page
├── author       # Info about blog authors
├── blog         # Blog posts
├── docs         # Documentation pages
└── search.md

Contributing

Setup

  1. Clone and setup

    # Install NPM dependencies with Node LTS version
    npm install
  2. Run Hugo server

    $ hugo server
    Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
    Press Ctrl+C to stop

You can visit localhost:1313 in browser to preview website.

Making changes

  1. Create a new branch
  2. Make your changes
  3. Verify your changes locally with Hugo server
  4. Commit and push your changes to the branch
  5. Raise a PR to default branch, verify changes with Netlify preview URL
  6. Once PR is merged, your changes would be live on the site