<aside> 💡 Use this template to create guidelines for all of the engineers on your team. Add a table of contents by typing /table of and pressing enter.

</aside>

Engineering philosophy

Summarize your team's approach to engineering here.

History

Notes about how the current codebase evolved.

Patterns to follow

Code samples

Add code blocks for common snippets. Type /code and press enter. Choose the language you're using from the dropdown at the bottom right corner. Hover to copy with one click.

var a = 1;
while (a <= 10) {
    document.write(a + "<br />");
    a++;
}

Further reading

Check out this Notion guide to learn about more ways to create content.

Development Workflow

Use Chat with Code | Repo Assistant for Github to review codebase.

ChatGPT - Chat with Code | Repo Assistant for Githu b

Key Components

  1. .gitignore - This file lists all the files and directories ignored by Git, which typically includes dependencies, build directories, and environment-specific files.
  2. .gitpod.yml - Configuration file for Gitpod, a cloud-based IDE, which indicates that this project may be set up for development in a cloud environment.