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

Fixed two tiny typos. #264

Merged
merged 2 commits into from
Nov 17, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $ npm install
This command does a few things:
* First it will install the dependencies needed for the application to run.
* If you're running in a development environment, it will then also install development dependencies needed for testing and running your application.
* Finally, when the install process is over, npm will initiate a bower install command to install all the front-end modules needed for the application
* Finally, when the install process is over, npm will initiate a bower install command to install all the front-end modules needed for the application.

## Running Your Application
After the install process is over, you'll be able to run your application using Grunt, just run grunt default task:
Expand Down Expand Up @@ -110,7 +110,7 @@ Windows users can follow instructions found [here](http://www.websense.com/suppo
To generate the key and certificate and place them in the *config/sslcert* folder.

## Getting Started With MEAN.JS
You have your application running but there are a lot of stuff to understand, we recommend you'll go over the [Official Documentation](http://meanjs.org/docs.html).
You have your application running but there is a lot of stuff to understand, we recommend you'll go over the [Official Documentation](http://meanjs.org/docs.html).
In the docs we'll try to explain both general concepts of MEAN components and give you some guidelines to help you improve your development process. We tried covering as many aspects as possible, and will keep update it by your request, you can also help us develop the documentation better by checking out the *gh-pages* branch of this repository.

## Community
Expand Down
2 changes: 1 addition & 1 deletion app/models/user.server.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var UserSchema = new Schema({
},
username: {
type: String,
unique: 'testing error message',
unique: 'Username already exists',
required: 'Please fill in a username',
trim: true
},
Expand Down