- Galvanize Reads is a CRUD app to track books and authors.
- The app our Q2 assessment for the Galvanize Full Stack program.
- Find it live on the web at: https://greads25.herokuapp.com
Christopher Comella
http://linkedin.com/in/comella
Assuming you have the required software on you computer and have it configured properly, you should be able to run the app on your machine with the following steps:
- Create the database:
$ createdb greads
- Clone and install the app:
$ git clone [email protected]:chrisco/galvanize-reads.git
$ cd galvanize-reads
$ npm i
- Create the database tables:
$ knex migrate:latest
- Seed the database tables:
$ knex seed:run
- Start the server:
$ npm run dev-start
- Visit: http://localhost:3000
Eloquent JavaScript, 2nd Edition
JavaScript
Eloquent JavaScript, 2nd Edition dives deep into the JavaScript language to show you how to write beautiful, effective code. Author Marijn Haverbeke immerses you in example code from the start, while exercises and full-chapter projects give you hands-on experience with writing your own programs.
http://eloquentjavascript.net/img/cover.png
Marijn Haverbeke
Marijn Haverbeke is a programming language enthusiast and polyglot. He's worked his way from trivial BASIC games on the Commodore, through a C++ phase, to the present where he mostly hacks on database systems and web APIs in dynamic languages. He recently won the JS1K—JavaScript demo in 1024 bytes—contest, and is the author of a wide range of open-source software.
- Add and use genres.
- Add and use books_written.
- Improve styling.
- Add automated build tasks, build, and distribute.