Dronesign is a PoC project to explore the feasibility of registering drones in alignment with FAA’s vision for airspace integration. It simulates a basic registration system, linking drones to their operators for accountability, safety, and airspace management. The project also integrates DocuSign APIs and services to allow users to sign agreements for drone registration.
The project consists of two main parts:
- Frontend: A React app for users to input drone registration details.
- Backend: A Flask-based API to process and store registration data.
- Node.js (for React)
- Python 3.x (for Flask)
- Clone the repo:
git clone https://github.com/aakzsh/dronesign
cd Dronesign- Run the Frontend:
cd frontend
npm install
npm start- Run the Backend:
cd backend
pip install -r requirements.txt
python3 main.pyVisit http://localhost:3000 for the frontend, and the backend runs at http://localhost:5000.
This PoC aims to assess if a scalable and user-friendly drone registration system can be implemented for safer airspace management.