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
style: Enhance README.md with improved styling and formatting (#881)
- Improved header and alignment styling for better visual hierarchy
- Added syntax highlighting to code blocks
- Enhanced section titles for better readability
- Ensured all external links open in new tabs
- Used more descriptive alt text for images
[Nhost](http://nhost.io) is an opensource Firebase alternative with GraphQL.
14
+
[Nhost](http://nhost.io) is an open-source Firebase alternative with GraphQL.
15
15
16
-
The Nhost CLI is used to get a local development environment. The local development environment will automatically track database migrations and hasura metadata.
16
+
The Nhost CLI is used to set up a local development environment. This environment will automatically track database migrations and Hasura metadata.
17
17
18
18
It's recommended to use the Nhost CLI and the [Nhost GitHub Integration](https://docs.nhost.io/platform/github-integration) to develop locally and automatically deploy changes to production with a git-based workflow (similar to Netlify & Vercel).
Initialize a project with a remote project as a starting point:
45
+
### Initialize a project with a remote project as a starting point
46
46
47
-
```
47
+
```bash
48
48
nhost init --remote
49
49
```
50
50
51
-
Start the development environment:
51
+
### Start the development environment
52
52
53
-
```
53
+
```bash
54
54
nhost up
55
55
```
56
56
57
-
You can also use the Nhost Dashboard:
57
+
### Use the Nhost Dashboard
58
58
59
-
```
59
+
```bash
60
60
nhost up --ui nhost
61
61
```
62
62
@@ -66,15 +66,16 @@ nhost up --ui nhost
66
66
-[Nhost CLI](https://docs.nhost.io/platform/cli)
67
67
-[Reference](https://docs.nhost.io/reference/cli)
68
68
69
-
## Build from source
70
-
Make sure you have [Go](https://golang.org/doc/install) 1.18 or later installed.
69
+
## Build from Source
71
70
72
-
The source code includes a self-signed certificate for testing purposes
73
-
Nhost workers with configured access to AWS may use `cert.sh` script to generate a real certificate from Let's Encrypt.
71
+
Make sure you have [Go](https://golang.org/doc/install) 1.18 or later installed.
74
72
75
-
`go build -o /usr/local/bin/nhost` will build the binary available as `nhost` command in terminal.
73
+
The source code includes a self-signed certificate for testing purposes. Nhost workers with configured access to AWS may use the `cert.sh` script to generate a real certificate from Let's Encrypt.
76
74
75
+
```bash
76
+
go build -o /usr/local/bin/nhost
77
77
```
78
+
This will build the binary available as the `nhost` command in the terminal.
78
79
79
80
## Dependencies
80
81
@@ -83,8 +84,8 @@ Nhost workers with configured access to AWS may use `cert.sh` script to generate
0 commit comments