Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 18 additions & 15 deletions packages/actor-core-cli/src/commands/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,39 +197,42 @@ export async function action(
))}
</Box>
)}
<Box flexDirection="column" marginTop={1} marginBottom={1}>
<Box flexDirection="column" marginTop={1} marginBottom={0}>
<Text>▸ To get started, run</Text>

<Box flexDirection="column" marginX={3} marginY={1}>
<Box flexDirection="column" marginX={2} marginY={1}>
<Text>cd {wd}</Text>
<Text>{cmd(platformOptions.cmds.run)} dev</Text>
</Box>

{platformOptions.deployable ? (
<>
<Text>▸ To deploy, run</Text>
<Box flexDirection="column" marginX={3} marginY={1}>
<Box flexDirection="column" marginX={2} marginY={1}>
<Text>{cmd(platformOptions.cmds.run)} deploy</Text>
</Box>
</>
) : null}

<Text>▸ Integrate your client of choice</Text>
<Box flexDirection="column" marginX={3} marginY={1}>
<Text>React: <Text underline>https://actorcore.org/frameworks/react</Text></Text>
<Text>Node.js & Bun: <Text underline>https://actorcore.org/clients/javascript</Text></Text>
<Text>Rust: <Text underline>https://actorcore.org/clients/rust</Text></Text>
</Box>

<Text>▸ Documentation</Text>

<Box flexDirection="column" marginX={3} marginY={1}>
<Text underline>https://actorcore.org/</Text>
<Box marginX={2} marginY={1} gap={4}>
<Box flexDirection="column">
<Text bold>Overview</Text>
<Text bold>React</Text>
<Text bold>Node.js & Bun</Text>
<Text bold>Rust</Text>
</Box>
<Box flexDirection="column">
<Text underline>https://actorcore.org/overview</Text>
<Text underline>https://actorcore.org/frameworks/react</Text>
<Text underline>https://actorcore.org/clients/javascript</Text>
<Text underline>https://actorcore.org/clients/rust</Text>
</Box>
</Box>

<Text>▸ Support ActorCore, give us a star</Text>
<Text>▸ Star ActorCore on GitHub</Text>

<Box flexDirection="column" marginX={3} marginY={1}>
<Box flexDirection="column" marginX={2} marginY={1}>
<Text underline>https://github.com/rivet-gg/actor-core</Text>
</Box>
</Box>
Expand Down
Loading