https://github.com/vatger/atciss
Virtual Air Traffic Control Information Support System
https://github.com/vatger/atciss
atc flightsim vatsim
Last synced: 6 months ago
JSON representation
Virtual Air Traffic Control Information Support System
- Host: GitHub
- URL: https://github.com/vatger/atciss
- Owner: vatger
- License: mit
- Created: 2023-02-26T22:30:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T14:14:44.000Z (11 months ago)
- Last Synced: 2024-05-29T06:02:19.316Z (11 months ago)
- Topics: atc, flightsim, vatsim
- Language: TypeScript
- Homepage: https://atciss.vatsim-germany.org
- Size: 9.6 MB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vatsim - VATGER ATCISS - Air Traffic Control Information Support System (Controller Tools / VATSIM Connect)
README
# ATCISS
ATCISS is an acronym for the Air Traffic Control Information Support System that
is used by the Deutsche Flugsicherung (DFS) in German airspace. This is an
implementation that aims to replicate the real ATCISS with information and data
from the [VATSIM](https://vatsim.net/) network for use by the controllers of
[VATSIM Germany](https://vatsim-germany.org/).## Screenshots





## Development
The backend is packaged with [poetry](https://python-poetry.org/).
A package build, docker image build and development shell is available
using [Nix Flakes](https://nixos.wiki/wiki/Flakes) and
[direnv](https://direnv.net/). A full development environment using
[docker-compose](https://docs.docker.com/compose/) is also availabe.### Run the API
```
atciss serve
```### Run the worker & task scheduler
```
atciss worker
``````
atciss scheduler
```### Run the frontend
```
npm start
```### Build docker images
```
nix build .#frontend-image
nix build .#backend-image
```### Migrations
```
alembic revision --autogenerate -m comment
alembic upgrade head
```