Hi 👋 I'm Eliyan Dochev!
AreaCraft is a web and mobile application that allows users to create automated workflows between different services. Similar to IFTTT or Zapier, AreaCraft lets you connect triggers (when something happens) with actions (do something) across multiple platforms.
The platform currently integrates with the following services:
- Trello: Create, update, and manage boards, lists, and cards
- Callr: Make calls, send SMS, and manage media
- ChatGPT: Process messages with AI for sentiment analysis, categorization, summarization, and email formatting
- GitHub: Connect with your GitHub account
- Spotify: Connect with your Spotify account
AreaCraft utilizes webhooks to trigger actions based on events:
- Board events (create, update, delete)
- List events (create, update, delete)
- Card events (create, update, delete)
- Member events (create, update, delete)
- Call events (outbound hangup, inbound start, outbound start, inbound hangup)
- Media recording events
- Billing credit events
- SMS events
- DID (Direct Inward Dialing) events (assigned, unassigned)
- Docker and Docker Compose
- Node.js and npm/yarn for web development
- Expo CLI for mobile development
- API keys for the services you want to connect (Trello, Callr, ChatGPT, GitHub, Spotify, NASA)
Create a .env
file in the server directory with the following variables:
SERVER_SECRET_KEY=your_secret_key
DATABASE_URI=sqlite:///../Area.db
VIRSION=1.0
PORT=8080
SERVER_URL=http://your_public_ip:${PORT}
API_TRELLO=your_trello_api_key
API_SECRET=your_trello_api_secret
ADMIN_PASSWORD=your_admin_password
ADMIN_USERNAME=admin
CHATGPT_API_KEY=your_openai_api_key
CALLR_LOGIN=your_callr_login
CALLR_PASSWORD=your_callr_password
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
API_NASA=your_nasa_api_key
Navigate to the project directory and run:
cd server
docker compose up --build
The server will be available at http://localhost:8080
.
cd web
yarn install
yarn serve
The web application will be available at http://localhost:8081
.
cd mobile
yarn install
expo start --tunnel
Note: Launch the server first before frontend to ensure the API is available.
Follow the Expo instructions to run the application on your mobile device or emulator.
- Register an account and log in
- Connect to your preferred services
- Create a new Area by selecting:
- A trigger service and event (e.g., "When a new Trello card is created")
- An action service and action (e.g., "Send an SMS via Callr")
- Configure any necessary parameters
- Save and activate your Area
The mobile application supports:
- User registration and authentication
- Service connection (OAuth or API credentials)
- Area creation and management
- Push notifications for triggered events
The web interface provides:
- User registration and authentication
- Service connection
- Area creation and management
- Dashboard for monitoring automation activities
you can find the documentation of the api endpoints when you run the server at http://localhost:8080/docs
AreaCraft was created by the following team: Eliyan, Vlad, Charles, Vasiliy.
This project is licensed under the MIT License - see the LICENSE file for details.