This is a development version of the Graphia content management system that:
- stores content in a git repository;
- has a back end written in Go;
- and a front end written in JavaScript with Babel; and Vue;
- utilises Hugo for publishing.
Clone the repository and change to the correct directory.
git clone [email protected]/graphia/cms
cd cms
Now we can install the NPM requirements. This step should create a
node_modules
directory containing all of the CMS's dependencies.
npm install
Now, we can make sure everything works by using make run-frontend
and
make run-backend
. At some point there will be a testing stage here! 👷