Skip to main content

Welcome to Blackpink's AREA

A brief intro to the project, what it is, and why it exists.

Project Overview​

Blackpink in your AREA is a school project under development by a team of 3rd year students at Epitech Nantes. The core idea of the Action-REAction (AREA) project is to reproduce tools like Zappier & Make.

The purpose of the AREA project is to make a cross-platform app (web browser + android/ios) that can be used to automate tasks and relations between different services.

Daily e-mail

AREA demo

Quick Start​

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

2. Clone the repository​

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

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.

Contributing​

If you find a bug or want to request a feature, create an issue on the GitHub project page.

To contribute directly:

  1. Create a branch from dev.
  2. Make your changes.
  3. Open a pull request.

Important: Read the Contributing Guide before submitting your PR.