https://github.com/dnoneill/libraryproject
https://github.com/dnoneill/libraryproject
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dnoneill/libraryproject
- Owner: dnoneill
- Created: 2017-05-24T00:30:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T14:01:39.000Z (almost 9 years ago)
- Last Synced: 2025-02-15T09:31:37.541Z (over 1 year ago)
- Language: JavaScript
- Size: 967 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Library Project
======
Description
----------------------
LibraryProject is an app that will allow you to keep track of who is borrowing your books. Simply search for a book (using a Goodreads api), select who you are and who you're borrowing it from, and enter your new loan into our system.
Developer Installation
----------------------
0. Ensure that Python 3 is installed on your machine (https://www.python.org/downloads/)
1. Create a directory for development projects on your machine
$ mkdir //projects
$ cd //projects
2. Clone the repository
$ git clone
$ cd libraryproject
3. Create a virtual environment and activate it
$ pyvenv ENV
$ source ENV/bin/activate
4. Install dependencies to the virtual environment
(ENV)$ pip install -r requirements.txt
5. Migrate models if necessary
(ENV)$ cd libraryproject
(ENV)$ python manage.py makemigrations
(ENV)$ python manage.py migrate
6. Load test data
(ENV)$ python manage.py loaddata users
(ENV)$ python manage.py loaddata data
Other Instructions
----------------------
We are in developer mode at the moment, so please feel free to use the following login information for testing on your local machine: login:admin and password:adminis289.