Skip to content

onelittlefish/arcanaeum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arcanaeum

Features

  • Keep track of book information, including title, author, and library availability
  • Search, add, and edit books
  • Filter by starred and library availability
  • Links to search Amazon, Goodreads, and a library catalog
  • Export list as CSV

Setup

  • Install Node.js
  • Install MongoDB: If you're setting up MongoDB for the first time, make sure to follow the instructions under "Run MongoDB" for setting up the environment and creating the data directory.
  • Create a Google developer project: Used for authentication. Under APIs, enable the Google+ API. Under Credentials, add an Oauth 2.0 client ID. Take note of generated the client ID and client secret (will be used in config.json). Add a redirect URL of the format <arcaneum URL>/auth/google/callback.
  • Set up the database:
    mongod
    use books
    db.users.insert({ "email": "[email protected]" })
    
    For now only one user is supported and login is via Google auth.
  • Set up the config: cp backend/src/config/config.example.json backend/src/config/config.json. Update the fields in config.json.
  • Install node modules:
    npm install
    

Building and running

Production

mongod
npm run build-all
npm run start-backend

Server development

mongod
npm run watch-backend

Client development

npm run build-frontend

Details

Server

Client

About

Keep track of books to read

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published