https://github.com/kenpusney/orbit-in-action
https://github.com/kenpusney/orbit-in-action
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kenpusney/orbit-in-action
- Owner: kenpusney
- Created: 2021-06-15T08:04:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-15T08:15:49.000Z (over 4 years ago)
- Last Synced: 2025-01-29T07:46:49.759Z (12 months ago)
- Language: Kotlin
- Size: 55.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Orbit in action
## Getting started
First you should setup an orbit server on your local, usually it would be convenient using `docker-compose`:
```yaml
version: '3.1'
services:
# orbitframework/orbit:2.0.0-alpha.108
orbit-server:
image: orbitframework/orbit:2.0.0-alpha.108
restart: always
ports:
- 50056:50056
networks:
- dev
networks:
dev:
external: true
```
Then you can start build your apps using orbit.
The official tutorials have incorrect examples, I've fixed in this repo.