README.md

# NodeActivator

<!-- MODULEDOC -->
A module to activate VM nodes.
<!-- MODULEDOC -->

## Installation

In order to use `NodeActivator`, you will need Elixir installed. Then create an Elixir project via the `mix` build tool. For example, if your project is `my_app`, you may run the following command.

```sh
$ mix new my_app
```

Then you can add `NodeActivator` to the list of dependencies in your `mix.exs`:

```elixir
def deps do
  [
    {:node_activator, "~> 0.1"}
  ]
end
```

If you are using Livebook or IEx, you can instead run:

```elixir
Mix.install([
  {:node_activator, "~> 0.1"}
])
```

## License

Copyright (c) 2023 University of Kitakyushu

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

## Acknowledgement

This work was supported by Asahi Kohsan Group Research Support Program of Kitakyushu Foundation for the Advancement of Industry Science and Technology (FAIS).