Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlbgn committed Aug 31, 2024
1 parent 78d7993 commit 5fe2956
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 @@

# KIRA's Website

This repository hosts KIRA Network's main website. The following describes the workflow for exporting the Webflow design, updating the `dev-webflow` branch, and publishing the changes to the `master` branch, which is used for GitHub Pages deployment.

## Workflow Overview

Clone the repository and checkout to dev branch:
```
git clone https://github.com/KiraCore/kira.network.git
cd kira.network
git checkout dev-webflow
```

1. **Webflow Export**:
- Export the latest version of the website from Webflow using credentials.
- Extract the exported ZIP to the repository. Replace all files.

2. **Update `dev-webflow` Branch**:
- Commit and push the changes to the `dev-webflow` branch.

```
git add .
git commit -m "update text"
git push
```

- A pull request from `dev-webflow` to `master` is automatically created.

3. **Merge the Pull Request**:
- Review the PR and merge it to update the `master` branch.
- The `master` branch is configured as the source for GitHub Pages. After the PR is merged, the site is automatically deployed via GitHub Pages.

0 comments on commit 5fe2956

Please sign in to comment.