Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 1.12 KB

README.mdown

File metadata and controls

21 lines (14 loc) · 1.12 KB

movielist

This is a personal rails project which I and my brother are using for tracking our movies we bought on dvd or bluray.

Installation

You have to run the migrations first. There is no user registration integrated, because this project is a personal project and there was no need to add one. In order to add a predefined set of users to the database, you have to do the following:

  • open test/fixtures/users.yml
  • configure the users which should have access to the system
  • the passwords of the users are stored in an sha1 hash. You can generate your own hashed password by typing echo -n "YourNewPassword" | openssl sha1 into your Terminal.
  • run rake db:fixtures:load

That is all! Have fun with it!