https://github.com/conradwt/greeter-server-elixir
https://github.com/conradwt/greeter-server-elixir
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/conradwt/greeter-server-elixir
- Owner: conradwt
- License: mit
- Created: 2022-07-04T05:35:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-03T08:06:27.000Z (over 1 year ago)
- Last Synced: 2025-02-03T09:23:11.621Z (over 1 year ago)
- Language: Elixir
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Greeter Server
The purpose of this repository is to create Greeter server
for responding to Greeter client requests.
## Starting the Greeter server
1. start an iex session
```zsh
iex -S mix
```
2. start the Greet server by entering the following:
```elixir
GreeterServer.GreeterService.Server.start(8080)
```
Note: The Greeter service is available on host, `localhost`, that has the port, `8080`.
## Stopping the Greeter server
1. start another iex session
```zsh
iex -S mix
```
2. stop the Greeter server by entering the following:
```elixir
GreeterServer.GreeterService.Server.stop()
```
## License
Greeter Server is released under the [MIT license](./LICENSE.md).
## Copyright
Copyright © 2022 - 2023 Conrad Taylor. All rights reserved.