Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thepmsquare/library-management-system
library-management-system
https://github.com/thepmsquare/library-management-system
Last synced: 2 days ago
JSON representation
library-management-system
- Host: GitHub
- URL: https://github.com/thepmsquare/library-management-system
- Owner: thepmsquare
- Created: 2021-04-03T14:29:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-16T05:48:11.000Z (over 3 years ago)
- Last Synced: 2024-11-22T02:22:04.786Z (2 months ago)
- Language: JavaScript
- Homepage: https://thepmsquare.github.io/library-management-system/
- Size: 23.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Library Management System
To check out the project...
> Clone / Download zip
> run "npm install" (will require node and npm)
> add firebase config object for your project in src/Firebase.js
```js script
import firebase from "firebase/app";
import "firebase/auth";
import "firebase/firestore";
import "firebase/analytics";
const firebaseConfig = {
//...
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();export default firebase;
```> add Google Books API Key in src/BooksAPIKey.js
```js script
const BooksAPIKey = "...";
export default BooksAPIKey;
```> run "npm start"
Feedback is appreciated. Thank you!