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: learn/getting-started/create-your-first-application.mdx
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: Create Your First Application
5
5
importTabsfrom'@theme/Tabs';
6
6
importTabItemfrom'@theme/TabItem';
7
7
8
-
With Harper successfully installed and setup, let's dive into building your first Harper Application, a simple REST API. Harper lets you build powerful APIs with minimal effort. In just a few minutes, you'll have a functional REST API with automatic validation, indexing, and querying—all without writing a single line of code.
8
+
With Harper successfully installed and setup, let's dive into building your first Harper Application, a simple REST API. Harper lets you build powerful APIs with minimal effort.
9
9
10
10
## What You Will Learn
11
11
@@ -18,8 +18,7 @@ With Harper successfully installed and setup, let's dive into building your firs
18
18
19
19
## Prerequisites
20
20
21
-
- Working Harper Installation
22
-
- Complete previous guide [Install and Connect Harper](./install-and-connect-harper)
21
+
- Working Harper Installation (previous guide [Install and Connect Harper](./install-and-connect-harper))
23
22
24
23
## Harper Architecture
25
24
@@ -57,7 +56,7 @@ Lets get started building your first Harper application!
57
56
<TabsgroupId="installation">
58
57
<TabItemvalue="local"label="Local Installation">
59
58
60
-
Get started by cloning the [`HarperFast/create-your-first-application`](https://github.com/HarperFast/create-your-first-application) repo and opening it your editor of choice. If you have installed Harper using a container, make sure to run this within the `dev/` directory that the container was mounted to.
59
+
Get started by cloning the [`HarperFast/create-your-first-application`](https://github.com/HarperFast/create-your-first-application) repo and opening it your editor of choice. If you have installed Harper using a container, make sure to clone into the `dev/` directory that the container was mounted to.
Copy file name to clipboardExpand all lines: learn/getting-started/install-and-connect-harper.mdx
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,9 @@ This guide will demonstrate all three ways to get started as well as introduce s
13
13
14
14
## What You Will Learn
15
15
16
-
- How to install Harper locally
16
+
- How to install Harper locally using a Node.js package manager or a container
17
17
- How to use the `harperdb` CLI
18
18
- How to get setup using Harper Fabric
19
-
- How to install and setup Harper as a container
20
19
- How to perform a health check using the built-in Harper Operations API health endpoint
21
20
22
21
## Prerequisites
@@ -28,7 +27,7 @@ Like the [Welcome](../) page stated, all guide pages require a set of system pre
28
27
## Local installation and setup
29
28
30
29
:::note
31
-
If you want to use the cloud-hosted, platform service Harper Fabric instead of a local installation, skip ahead to the [Getting started with Fabric](#get-started-with-fabric) section.
30
+
If you want to use the cloud-hosted, platform service Harper Fabric instead of a local installation, skip ahead to the [Getting started with Fabric](#getting-started-with-fabric) section.
32
31
:::
33
32
34
33
<TabsgroupId="local-install">
@@ -201,7 +200,7 @@ This server does not have valid usage licenses, this should only be used for edu
201
200
202
201
This initial output contains a lot of helpful information. After the ASCII logo, there are a number of important log lines displaying the application process ID, the debugger endpoint, and domain socket path, and the Harper application version. Log lines are always prepended with the thread name, number, and then log level. `[main/0]` is the main thread, and `[http/1]` is the singular, additional worker thread. `[info]` is the default log level. After the log lines is specific application configuration information. It shows the application hostname, the number of worker threads, where Harper was installed, is the debugger enabled, logging level and location, and then ports, CORS, and socket path details for various networking protocols. We'll explain all of these in due time.
203
202
204
-
Interrupting the process (CTRL/CMD + C) will shut down Harper.
203
+
Interrupting the process (`CTRL/CMD + C`) will shut down Harper.
205
204
206
205
With Harper successfully running, skip ahead to [Performing a health check](#performing-a-health-check) to learn how to verify your local Harper instance is running and complete this getting started guide. Or continue reading for more information on getting started with Harper Fabric.
207
206
@@ -253,7 +252,7 @@ console.log(text);
253
252
254
253
</Tabs>
255
254
256
-
If you see `HarperDB is running.`, fantastic work! You've successfully installed and setup Harper. Continue on to the next part of the Getting Started section, [creating your first Harper application](./quickstart).
255
+
If you see `HarperDB is running.`, fantastic work! You've successfully installed and setup Harper. Continue on to the next part of the Getting Started section, [creating your first Harper application](./create-your-first-application).
0 commit comments