Skip to content

Commit 34081e1

Browse files
committed
chore: basic akai flavour added
1 parent bf9fd78 commit 34081e1

File tree

5 files changed

+36
-46
lines changed

5 files changed

+36
-46
lines changed

docs/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ If components are meant to be shared across versions, they can be put in `src/co
1313
All markdown files in these directories are generated from [scripts](/scripts):
1414

1515
- `docs/api/`
16-
- `docs/cli/commands/`
1716
- `docs/native/`

docs/development/starting.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Starting
3+
sidebar_label: Starting
4+
---
5+
6+
<head>
7+
<title>Starting</title>
8+
<meta name="description" content="your meta content goes here" />
9+
</head>
10+
11+
## Run the App
12+
13+
To run the app in development mode:
14+
15+
```shell
16+
npm run dev
17+
```
18+
Using this command will start the Next.js development server and allow you to preview changes made to the app's codebase in real-time, without having to manually recompile the code each time.
19+
20+
21+
## Build the App
22+
23+
To build the app:
24+
25+
```shell
26+
npm run build
27+
```
28+
The build command creates an optimized production build of your Next.js app. This command can take several minutes to complete and requires you to have all the necessary dependencies installed beforehand.

docs/index.md

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import DocsCards from '@components/global/DocsCards';
2828
<intro-end />
2929

3030
<DocsCards>
31-
<DocsCard header="Installation Guide" href="/intro/cli" icon="/icons/guide-installation-icon.svg" hoverIcon="/icons/guide-installation-icon-hover.svg">
31+
<DocsCard header="Installation Guide" href="/intro/installing-deps" icon="/icons/guide-installation-icon.svg" hoverIcon="/icons/guide-installation-icon-hover.svg">
3232
<p>Step-by-step guides to setting up your system and installing the framework.</p>
3333
</DocsCard>
3434

@@ -55,11 +55,6 @@ The vision of the AI assistant is to empower farmers with the timely knowledge a
5555
- The user interface will allow users to toggle between the most commonly used languages (English & Odia)
5656

5757

58-
## Requirements :scroll:
59-
60-
[NodeJS](https://nodejs.org/en/download/) and NPM or [yarn](https://yarnpkg.com/getting-started/install)
61-
62-
6358
## What's inside?
6459

6560
This repo uses [Yarn](https://classic.yarnpkg.com/) as a package manager. It includes the following packages/apps:
@@ -82,28 +77,6 @@ This repo has some additional tools already setup for you:
8277
- [ESLint](https://eslint.org/) for code linting
8378
- [Prettier](https://prettier.io) for code formatting
8479

85-
### Build
86-
87-
To build all apps and packages, run the following command:
88-
89-
```
90-
cd my-turborepo
91-
yarn run build
92-
```
93-
94-
### Develop
95-
96-
To develop all apps and packages, run the following command:
97-
98-
```
99-
cd my-turborepo
100-
yarn run dev
101-
```
102-
103-
## Designs
104-
![merge_from_ofoct](https://user-images.githubusercontent.com/65057795/231498806-b6b81917-673a-486a-9c80-88901805b4ec.jpg)
105-
106-
10780

10881
## Useful Links
10982

docs/intro/cli.md renamed to docs/intro/installing-deps.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,4 @@ npm i
2121
```
2222
The command above installs all the required packages as dependencies in your project.
2323

24-
## Run the App
2524

26-
To run the app in development mode:
27-
28-
```shell
29-
npm run dev
30-
```
31-
Using this command will start the Next.js development server and allow you to preview changes made to the app's codebase in real-time, without having to manually recompile the code each time.
32-
33-
## Build the App
34-
35-
To build the app:
36-
37-
```shell
38-
npm run build
39-
```
40-
The build command creates an optimized production build of your Next.js app. This command can take several minutes to complete and requires you to have all the necessary dependencies installed beforehand.

sidebars.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ module.exports = {
44
type: 'category',
55
label: 'Getting Started',
66
collapsed: false,
7-
items: ['index', 'intro/environment', 'intro/cli'],
7+
items: ['index', 'intro/environment', 'intro/installing-deps'],
8+
},
9+
{
10+
type: 'category',
11+
label: 'Development',
12+
collapsed: false,
13+
items: ['development/starting'],
814
},
915

1016
],

0 commit comments

Comments
 (0)