Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.38 KB

SETUP.md

File metadata and controls

29 lines (21 loc) · 1.38 KB

Setup

1. Clone the Repo

Clone the MicroGen repo from GitHub. After cloning you will want to remove the git folder and run git init to start a fresh git repository.

2. Setup Tina Cloud to manage the CMS

3. Set up a Fleek site

When you're ready you can setup a site on Fleek running off your repo. You will need to setup environment variables for Tina.

Upgrading MicroGen

You can upgrade your project to the latest version of MicroGen by checking out the MicroGen repo and then merging it into your project. Be careful not to overwrite your projects /content/index.md file.

cd path/to/your-project
git remote add microgen-tina /path/to/microgen-tina
git fetch microgen-tina --tags
git merge --allow-unrelated-histories microgen-tina/main
git remote remove microgen-tina

Tips and Tricks

  • If you edit environment variables remember you must redeploy your project on Vercel for the new variables to take effect.