Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions docs/deployment.md

This file was deleted.

13 changes: 7 additions & 6 deletions docs/getting-started.md → docs/getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ sidebar_position: 2

# Getting Started

Learn how to install and set up MyCoder for your development environment.
Learn how to install and set up MyCoder for your development environment.=


## Prerequisites

Expand All @@ -26,9 +27,9 @@ npx mycoder

MyCoder works on all major operating systems. Select your platform for specific setup instructions:

- [Windows Setup](./getting-started/windows.md)
- [macOS Setup](./getting-started/macos.md)
- [Linux Setup](./getting-started/linux.md)
- [Windows Setup](./windows)
- [macOS Setup](./macos)
- [Linux Setup](./linux)

## Setting Up Your API Key

Expand Down Expand Up @@ -80,6 +81,6 @@ mycoder config set modelName gpt-4o

## Next Steps

- Learn about [basic usage](./usage.md)
- Explore the [configuration options](./usage/configuration.md)
- Learn about [basic usage](../usage)
- Explore the [configuration options](../usage/configuration)
- Join our [Discord community](https://discord.gg/5K6TYrHGHt)
4 changes: 2 additions & 2 deletions docs/intro.md → docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ MyCoder can help with a wide variety of development tasks:

To start using MyCoder, check out the following sections:

- [Installation and setup](./getting-started.md)
- [Basic usage and commands](./usage.md)
- [Installation and setup](./getting-started/index.mdx)
- [Basic usage and commands](./usage/index.mdx)
- [Configuration options](./usage/configuration.md)

## Community
Expand Down
9 changes: 5 additions & 4 deletions docs/usage.md → docs/usage/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ sidebar_position: 3

Learn how to use MyCoder effectively for your development tasks.


## Basic Usage

### Running with a Prompt
Expand Down Expand Up @@ -103,7 +104,7 @@ To enable GitHub mode:
mycoder config set githubMode true
```

This requires the GitHub CLI (`gh`) to be installed and authenticated. For more details, see the [GitHub Mode documentation](./usage/github-mode.md).
This requires the GitHub CLI (`gh`) to be installed and authenticated. For more details, see the [GitHub Mode documentation](./github-mode).

## Available Tools

Expand All @@ -121,6 +122,6 @@ MyCoder has access to a variety of tools that enable it to perform complex tasks

For more detailed information about specific features, check the following pages:

- [Configuration Options](./usage/configuration.md)
- [GitHub Mode](./usage/github-mode.md)
- [Performance Profiling](./usage/performance-profiling.md)
- [Configuration Options](./configuration)
- [GitHub Mode](./github-mode)
- [Performance Profiling](./performance-profiling)
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/intro">
to="/docs">
Get Started with MyCoder
</Link>
</div>
Expand Down