Allows authenticated users to keep track of their tool collections using a
library-like system. The catalog stores a variety of information about each
tool and where it is located.
- Check that you have all prerequisites installed
- Clone this repository
- There is no database setup process! Every time the app is started, it
checks if the database is present and creates it if not.
- Navigate to the directory where you installed the app.
- Run
python app.py &
to start. - Enter
localhost:8000
in your browser address bar to access the app.
Tool Trackr offers two JSON endpoints that allows logged-in users to view
but not edit any tool in the system.
- /tools/json/ returns all information on all tools
- /tools//json/ returns all information on the given tool id
- Isaac Friedman
- Google Auth functions come straight from Google's documentation, slightly modified.