Customized to New Project
-
Configure Project
.env
.ROOT_DIR=workspace PROJECT_NAME=YOUR-OWN-PROJECT-NAME
-
Configure
.devcontainer/devcontainer.json
, marked asTODO
part. -
Rename folder
workspace/project_name
toworkspace/YOUR-OWN-PROJECT-NAME
. -
If you have a
README.md
in the new project, customize it to your need. -
If you want to lanch documentation server, make sure to:
-
Edit
workspace/docs/index.md
to customize workspace/docs/index.md to your new project.You can hide the pages that you don’t need, through edit frontmatter in
*.md
files:--- layout: default title: Getting Started nav_order: 2 has_children: True usetocbot: true nav_exclude: true # Add this line to hide the page ---
-
Edit
workspace/docs/_config.yml
, marked asTODO
part. Especially, when you want the docs to be development throught github pages, you need to editbaseurl
.# TODO: Add your repository name here and select corresponding way to link it # From # on `local jekyll server`, set like this: baseurl: "" url: "https://localhost" # TO # on `gh-pages`, set like this: baseurl: "python-poetry-wsl2-ubuntu-gpu-docker-template" # YOUR REPOSITORY NAME url: https://github.com/liuyuweitarek/
-
Please check more details in editing this documentation that shows how to manage these pages and customize it for your project.