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
Quick Start​
1. Install docker & docker-compose​
- Ubuntu / Debian
- Fedora / RHEL / CentOS
- Arch Linux / Manjaro
- macOS
- Windows
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
Using dnf or yay
# Install Docker
sudo dnf install -y docker
# Enable & start Docker
sudo systemctl enable docker
sudo systemctl start docker
# Install Docker Compose
sudo dnf install -y docker-compose
Using pacman
# Install Docker
sudo pacman -Syu docker
# Enable & start Docker
sudo systemctl enable docker
sudo systemctl start docker
# Install Docker Compose
sudo pacman -S docker-compose
Using homebrew
# Install Docker Desktop
# Docker Compose comes with it
brew install --cask docker
Using chocolatey
# Install Docker Desktop
# Docker Compose comes with it
choco install docker-desktop
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:
- Create a branch from
dev
. - Make your changes.
- Open a pull request.
Important: Read the Contributing Guide before submitting your PR.