-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |