Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.3 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.3 KB

Inventory Tracker

An app I'm creating to track my growing personal inventory comprised mostly of home automation gear (IoT), some gaming stuff, and other knick-knacks but it could extend to other things.

Check out the project issue/feature tracker here: Inventory Tracker GitHub Project

Tech Stack


Installation & Usage

Pre-requisites: Before you can run the application, ensure the following pre-requisites are installed:

Run instructions

  1. Clone/download the repo.

    git clone https://github.com/moh-i-ahmed/inventoryTracker
    
  2. Run the Django app server.

    cd <repo_location>/inventoryTracker/inventoryTracker
    python .\manage.py makemigrations
    python .\manage.py migrate
    python .\manage.py runserver
    
  3. Run the React app.

    cd <repo_location>/inventoryTracker/inventoryTracker/frontend
    npm run dev
    
  4. After the application starts, go to http://127.0.0.1:8000 to view it in the browser.