You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ CONTAINER_UID=1000
109
109
GPU_DRIVER=cuda
110
110
```
111
111
112
-
Any environment variables supported by InvokeAI can be set here. See the [Configuration docs](https://invoke-ai.github.io/InvokeAI/features/CONFIGURATION/) for further detail.
112
+
Any environment variables supported by InvokeAI can be set here. See the [Configuration docs](https://invoke.ai/configuration/invokeai-yaml/) for further detail.
Copy file name to clipboardExpand all lines: docs/src/content/docs/configuration/docker.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ On the [Docker Desktop app](https://docs.docker.com/get-docker/), go to `Prefere
55
55
56
56
Set up your environment variables. In the `docker` directory, make a copy of `.env.sample` and name it `.env`. Make changes as necessary.
57
57
58
-
Any environment variables supported by InvokeAI can be set here - please see [Configurations](../configuration.md) for further detail.
58
+
Any environment variables supported by InvokeAI can be set here - please see the [configuration docs](/configuration/invokeai-yaml/) for further detail.
59
59
60
60
At the very least, you might want to set the `INVOKEAI_ROOT` environment variable
61
61
to point to the location where you wish to store your InvokeAI models, configuration, and outputs.
Copy file name to clipboardExpand all lines: docs/src/content/docs/contributing/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ We welcome contributions, whether features, bug fixes, code cleanup, testing, co
10
10
11
11
## Development
12
12
13
-
If you’d like to help with development, please see our [development guide](contribution_guides/development.md).
13
+
If you’d like to help with development, please see our [development guide](/development/).
14
14
15
-
**New Contributors:** If you’re unfamiliar with contributing to open source projects, take a look at our [new contributor guide](contribution_guides/newContributorChecklist.md).
15
+
**New Contributors:** If you’re unfamiliar with contributing to open source projects, take a look at our [new contributor guide](/contributing/new-contributor-guide/).
16
16
17
17
## Nodes
18
18
19
-
If you’d like to add a Node, please see our [nodes contribution guide](../nodes/contributingNodes.md).
19
+
If you’d like to add a Node, please see our [nodes contribution guide](/development/guides/creating-nodes/).
20
20
21
21
## Support and Triaging
22
22
@@ -42,7 +42,7 @@ This project is a combined effort of dedicated people from across the world. [C
42
42
43
43
## Code of Conduct
44
44
45
-
The InvokeAI community is a welcoming place, and we want your help in maintaining that. Please review our [Code of Conduct](../CODE_OF_CONDUCT.md) to learn more - it's essential to maintaining a respectful and inclusive environment.
45
+
The InvokeAI community is a welcoming place, and we want your help in maintaining that. Please review our [Code of Conduct](/contributing/code-of-conduct/) to learn more - it's essential to maintaining a respectful and inclusive environment.
46
46
47
47
By making a contribution to this project, you certify that:
Copy file name to clipboardExpand all lines: docs/src/content/docs/contributing/new-contributor-guide.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ If you're a new contributor to InvokeAI or Open Source Projects, this is the gui
12
12
<Steps>
13
13
1. Set up your local development environment & fork of InvokAI by following [the steps outlined here](../../development/setup/dev-environment/#initial-setup)
14
14
15
-
2. Set up your local tooling with [this guide](../LOCAL_DEVELOPMENT.md). Feel free to skip this step if you already have tooling you're comfortable with.
15
+
2. Set up your local tooling with [this guide](/development/). Feel free to skip this step if you already have tooling you're comfortable with.
16
16
17
-
3. Familiarize yourself with [Git](https://www.atlassian.com/git) & our project structure by reading through the [development documentation](development.md)
17
+
3. Familiarize yourself with [Git](https://www.atlassian.com/git) & our project structure by reading through the [development documentation](/development/)
18
18
19
19
4. Join the [#dev-chat](https://discord.com/channels/1020123559063990373/1049495067846524939) channel of the Discord
20
20
@@ -29,7 +29,7 @@ If you're a new contributor to InvokeAI or Open Source Projects, this is the gui
29
29
30
30
Never made an open source contribution before? Wondering how contributions work in our project? Here's a quick rundown!
31
31
32
-
Before starting these steps, ensure you have your local environment [configured for development](../LOCAL_DEVELOPMENT.md).
32
+
Before starting these steps, ensure you have your local environment [configured for development](/development/setup/dev-environment/).
33
33
34
34
<Steps>
35
35
1. Find a [good first issue](https://github.com/invoke-ai/InvokeAI/contribute) that you are interested in addressing or a feature that you would like to add. Then, reach out to our team in the [#dev-chat](https://discord.com/channels/1020123559063990373/1049495067846524939) channel of the Discord to ensure you are setup for success.
Copy file name to clipboardExpand all lines: docs/src/content/docs/development/Architecture/overview.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ The session graph does not support looping. This is left as an application probl
93
93
94
94
### Invocations
95
95
96
-
Invocations represent individual units of execution, with inputs and outputs. All invocations are located in `/invokeai/app/invocations`, and are all automatically discovered and made available in the applications. These are the primary way to expose new functionality in Invoke.AI, and the [implementation guide](INVOCATIONS.md) explains how to add new invocations.
96
+
Invocations represent individual units of execution, with inputs and outputs. All invocations are located in `/invokeai/app/invocations`, and are all automatically discovered and made available in the applications. These are the primary way to expose new functionality in Invoke.AI, and the [implementation guide](/development/architecture/invocations/) explains how to add new invocations.
0 commit comments