API Server Installation
Preparation
apt install python3-pip
apt install python3.12-venv
python3 -m venv env
source env/bin/activate
Step 1 - Git clone
Clone the repository from Github:
git clone https://github.com/ahmadsidrap/rpa-nano.git
Step 2 - Install libraries
cd rpaNanoRouter
pip install -r requirements.txt
Step 3 - Migrate DB
python manage.py migrate
Step 4 - Create Superuser
python manage.py createsuperuser
Step 5 - Run the server
python manage.py runserver
No Comments