Skip to main content

Installation

Local dev setup​

Step 1: Install docker & docker-compose​

Using apt
# Update packages
sudo apt update

# Install Docker
sudo apt install -y docker.io

# Enable & start Docker
sudo systemctl enable docker
sudo systemctl start docker

# Install Docker Compose
sudo apt install -y docker-compose

Step 2: Clone the repository​

git clone https://github.com/Five-Stacks/area.git

Step 3: Launch the app​

docker-compose up

This will launch a couple of things :

  • Backend server & database.
  • Frontend web app, accessible on http://localhost:8081.
  • Frontend mobile app, download on http://localhost:8082, QR code available to download it directly on your phone if it is on the same network as your pc running the app.

Local build​

There is actually no easy way to build a packaged app for web & mobile apps.

Server deployment​

There is actually no easy way to deploy the app on a server.

Kubernetes setup may be included at later date.