I have a repo at github.com/some_user/some_repo, and it's set to deploy via GitHub pages on the ./docs subfolder of the master branch, to example.com.
./docs/admin/config.yml (and example.com/admin/config.yml) has the following code:
backend:
name: github
repo: some_user/some_repo
branch: master
base_url: https://my-authentication-server.example.com
How do I tell netlify CMS that the code is in the ./docs subfolder and not the root of the codebase? Is there something like this?
backend:
...
site_directory: docs
...