Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 96c9eef

Browse files
author
Mrinal Wahal
committed
updated changelog
1 parent 1dc2c0c commit 96c9eef

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ Changes:
1010
1. Docker Compose dependency removed. Containers are now handled natively directly using Docker's native SDK for Golang by accessing installed docker daemon.
1111
1. Required Hasura CLI v.2.0.0-alpha11 binaries are automatically downloaded for the user depending on their operating system and architecture and stored in `$HOME/.nhost` aka the Nhost root directory.
1212
1. Users may now directly run the all-powerful single `nhost` command to use the complete pipeline of initializing the app, cloning pre-configured Nhost compatible front-end templates subject to choice of framework, and launching a local development environment for their app.
13-
1. Added `nhost templates` command clones pre-configured Nhost compatible front-end templates (exaxmple: NuxtJs, NextJs, ReactJs, etc.) subject to choice of framework in the `web/` directory in app root.
14-
1. `nhost init` and `nhost dev` have been made action specific for ONLY initializing the app and launching a local dev environment, respectively.
13+
1. `nhost` command now offers to clone pre-configured front-end templates (exaxmple: NuxtJs, NextJs, ReactJs, etc.) subject to choice of framework in the `web/` directory in app root.
14+
1. `nhost init` and `nhost dev` have been made action specific for ONLY initializing the app and launching the development environment, respectively.
1515
1. Added global `-d` or `--debug` flag for printing debug level verbose logs. Default logging includes logs of level `info`, `warn`, 'error' and `fatal`.
1616
1. Added global `-j` or `--json` flag in case the user wants to print the logs in JSON format.
1717
1. Added global `--log-file` flag which, if passed, would concurrently write the logs (without colour, and with timestamps) to that file along with stdOut.
18-
1. Added `health` command which checks scans for any running Nhost services, validates the health of their respective containers and performs service-exclusive health checks. This command is still `[WIP]`. It does the former job. Yet to build the latter one.
1918
1. Added `upgrade` command to check for latest versions of this utility from Github release APIs of this repository, and download and install those versions.
2019
1. Added `version` command which prints out the current utility version along with operating system and architecture. Additionally, checks for latest versions of the CLI available from repository's release API.
21-
1. Added `reset` command which deletes app specific `nhost/`, `.env.development` and `.nhost/` directories. User can also do this task manually with `rm -rf`.
2220
1. Added command specific documentations.
23-
1. Set up a proper and sophisticated logging using `logrus`.
21+
1. Set up a proper and sophisticated logging using `logrus` package.
2422
1. Automated the workflow more than before. Example: if the user is not logged in, then instead of preventing the user from launching dev environment and asking them to manually do `nhost login`, now the utility directly calls login functions whenever authentication is required for any command, and isn't accessible to it.
2523
1. Improved support for those specific uses cases where user may not have direct manual access to host machine where the utility might have to be run. For example, if the `nhost login` command prompts the user to enter their email for authentication, the user may directly insert email with a `-e` or `--email` flag, like `nhost login -e my_email@gmail.com`.
2624
1. Similar flags have been added to other commands to bypass input prompts as much as possible by directly passing validation inputs using flags.
2725
1. Added live reloading for API container if `package.json` file is changed/modified.
28-
1. Added `nhost support` command giving selection prompt to user to allow them to directly launch discord server or github discussions endpoints from terminal.
26+
1. Added `nhost support` command giving selection prompt to user to allow them to directly launch discord server or github discussions endpoints from terminal.
27+
1. Added local development/testing support for Nhost (serverless) functions. It's server is automatically launched with the rest of the environment with `nhost dev`. And a barebone testing server, only for serving functions, can also be launched using `nhost functions`.
28+
1. Added watchers for git operations (checkout/fetch/merge/pull/etc) by the user, while the development environment is live (still running). If any simultaneous git operation is detected, the CLI is automatically reconfigure the environment to accomodate those changes, and inform the user.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -231,16 +231,16 @@ Example:
231231
```
232232
functions/
233233
234-
index.js --> served at /
235-
hello.go --> served at /hello
234+
index.js --> served at /
235+
hello.go --> served at /hello
236236
237-
sub/
238-
hello.go --> served at /sub/hello
239-
index.js --> served at /sub
237+
sub/
238+
hello.go --> served at /sub/hello
239+
index.js --> served at /sub
240240
241-
/sub-sub
242-
hello.js --> served at /sub/sub-sub/hello
243-
index.go --> served at /sub/sub-sub
241+
/sub-sub
242+
hello.js --> served at /sub/sub-sub/hello
243+
index.go --> served at /sub/sub-sub
244244
```
245245

246246
Therefore, if you want to call your `functions/hello.go` function, you can call the following route:

0 commit comments

Comments
 (0)