Skip to content

Commit

Permalink
regen
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Sep 9, 2022
1 parent e37f6cd commit 4589d18
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
docs/
./docs/

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
4 changes: 4 additions & 0 deletions {{cookiecutter.project_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ help: status
@echo "make install -- install dependencies"
@echo "make setup -- initial setup"
@echo "make test -- runs tests"
@echo "make lint -- perfom linting"
@echo "make testdoc -- builds docs and runs local test server"
@echo "make deploy -- deploys site"
@echo "make update -- updates linkml version"
Expand Down Expand Up @@ -51,6 +52,9 @@ gen-project: $(PYMODEL)
test:
$(RUN) gen-project -d tmp $(SOURCE_SCHEMA_PATH)

lint:
$(RUN) linkml-lint $(SOURCE_SCHEMA_PATH)

check-config:
@(grep my-datamodel about.yaml > /dev/null && printf "\n**Project not configured**:\n\n - Remember to edit 'about.yaml'\n\n" || exit 0)

Expand Down
18 changes: 17 additions & 1 deletion {{cookiecutter.project_name}}/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# {{cookiecutter.__project_slug}}
# {{cookiecutter.project_name}}

{{cookiecutter.project_description}}

## Website

* [https://{{cookiecutter.github_org}}.github.io/{{cookiecutter.project_name}}](https://{{cookiecutter.github_org}}.github.io/{{cookiecutter.project_name}})

## Developer Documentation

<details>
Use the `make` command to generate project artefacts:

- `make all`: make everything
- `make deploy`: deploys site

</details>

## Credits

this project was made with [linkml-project-cookiecutter](https://github.com/linkml/linkml-project-cookiecutter)
5 changes: 5 additions & 0 deletions {{cookiecutter.project_name}}/src/docs/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# {{cookiecutter.project_name}}

{{cookiecutter.project_description}}


0 comments on commit 4589d18

Please sign in to comment.