Complete reimplementation of Login
in Go using ory.sh in our applications.
Clone the repository
git clone git@github.com:sdslabs/nymeria.git
Enter the directory and download the vendor files
cd nymeria/
make vendor
Build the binary using the command.
make build
Run the binary using the command
make run
To perform lint and formatting of the code, install golangci-lint using the command
make install-golangci-lint
To lint the code, run the command
make lint
To format the code, run the command
make format
Add new packages to the repository using the command
go get -u <package_path>
Hot reloading support
- run the following command to install
air
(hot reload support)
make install-air
- run the following command to run nymeria with
air
(hot reload support)
make dev