Whats is the default password for an application created with railsapps

26 views Asked by At

What's the initial password for the "[email protected]" of a "railsapps" application?

noname_development=# select * from users;
 id |      email       |                      encrypted_password                      | reset_password_token | reset_password_sent_at | remember_created_at |         created_at         |         updated_at         | name | confirmation_token |       confirmed_at        | confirmation_sent_at | unconfirmed_email | role | invitation_token | invitation_created_at | invitation_sent_at | invitation_accepted_at | invitation_limit | invited_by_type | invited_by_id | invitations_count 
----+------------------+--------------------------------------------------------------+----------------------+------------------------+---------------------+----------------------------+----------------------------+------+--------------------+---------------------------+----------------------+-------------------+------+------------------+-----------------------+--------------------+------------------------+------------------+-----------------+---------------+-------------------
  1 | [email protected] | $2a$11$BUd5P4WM0fbjykUwhaIW/.tBCM1b0a2fI3UWMUYAhxGICW59YExbm |                      |                        |                     | 2019-01-16 19:39:17.371911 | 2019-01-16 19:39:17.382413 |      |                    | 2019-01-16 19:39:17.37032 |                      |                   |    2 |                  |                       |                    |                        |                  |                 |               |                 0
(1 row)
2

There are 2 answers

1
jpbalarini On

Have you tried with 'password'?

0
Daniel Kehoe On

The default password for any RailsApp example application for "[email protected]" is "changeme". This is documented in the README file for any of the RailsApp example applications.