From 5af756c3b825b22a3fd2a4db82ee851258afa52d Mon Sep 17 00:00:00 2001 From: Adriano Santos Date: Tue, 6 Aug 2024 14:29:19 -0300 Subject: [PATCH] Added deploy section --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd1809c..108cb50 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ JVM User Language Support for [Spawn](https://github.com/eigr/spawn). 1. [Overview](#overview) 2. [Getting Started](#getting-started) + - [Deploy](#deploy) 3. [Advanced Use Cases](#advanced-use-cases) - [Dependency Injection](#dependency-injection) - [Types of Actors](#types-of-actors) @@ -17,16 +18,16 @@ JVM User Language Support for [Spawn](https://github.com/eigr/spawn). - [Forward](#forward) - [Pipe](#pipe) - [State Management](#state-management) -5. [Using Actors](#using-actors) +4. [Using Actors](#using-actors) - [Call Named Actors](#call-named-actors) - [Call Unnamed Actors](#call-unnamed-actors) - [Async](#async) - [Timeouts](#timeouts) -6. [Deploy](#deploy) +5. [Deploy](#deploy) - [Defining an ActorSystem](#defining-an-actorsystem) - [Defining an ActorHost](#defining-an-actorhost) - [Activators](#activators) -7. [Actor Model](#actor-model) +6. [Actor Model](#actor-model) - [Virtual Actors](#virtual-actors) @@ -602,6 +603,10 @@ mvn compile jib:build And this is it to start! Now that you know the basics of local development, we can go a little further. +### Deploy + +Please see main documentation [page](https://github.com/eigr/spawn/blob/main/docs/getting_started.md). + ## Advanced Use Cases Spawn Actors abstract a huge amount of developer infrastructure and can be used for many types of jobs.