Welcome to Arise! Arise is designed to be a cloud-native application. This guide will walk you through the basics of how to build and deploy your website to the cloud using Arise.
It's actually very simple to get a website up and running using Arise.
- Fork this repo
- Edit the global Arise site configuration file at
/arise-source/config/arise.conf
- Edit the example site in
/arise-source/
to your liking- Check out the page on creating pages for more information on the specifics of how Arise pages work
- Configure your
/arise-source/robots.txt
with your site domain and any additional crawler settings you'd like to set. - Upon any new commit to the site source files, the GitHub Actions workflow present in
/.github/workflows/
will automatically build your website based on the contents of/arise-source/
and output the built files to yourhtml
branch. - Configure your cloud web host of choice to automatically deploy a static site from the
html
branch of your repo. Specific instructions for several notable providers can be found below:
Congrats! Your site is now up and running! If you want to make changes to your website, you can simply make a commit to the main
branch of your repo source files and it will automatically be deployed to your live website! Pretty wiz, yeah?
You can also clone this repo and run Arise locally. However, this not recommended because you are honestly wasting your time by manually running the build process and managing the build artefacts instead of just sitting back and letting CI/CD do the work for you.
If you REALLY want to run Arise locally, please refer to this guide.