Skip to content
This repository has been archived by the owner on Sep 30, 2021. It is now read-only.

Commit

Permalink
Update login password and README help
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanKingston committed Apr 24, 2012
1 parent 04004a4 commit 501dd25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -18,4 +18,6 @@ Then you can clone the code onto your system:
Move to that direcory and deploy to your own location:

cd britto
meteor deploy [yourlocation].meteor.com
meteor deploy [yourlocation].meteor.com

You can then visit your applications address and login with username: admin and password: password.
2 changes: 1 addition & 1 deletion server/startup.js
Expand Up @@ -6,7 +6,7 @@ Meteor.startup(function () {
});
if(Users.find().count() === 0) {
console.log('Adding in users');
userId = createUser({username: 'jonathan', password: 'test', name: 'Jonathan Kingston'});
userId = createUser({username: 'admin', password: 'password', name: 'Your name'});
console.log('Adding in test post');
user = Users.findOne({_id: userId});
makePost({title: 'Hello world', body: 'Cruel cruel world', slug: 'yellow_world', auth: user.apikey});
Expand Down

0 comments on commit 501dd25

Please sign in to comment.