Click here to Skip to main content
15,891,136 members
Articles
Article
(untagged)

Planning Your Project

Rate me:
Please Sign up or sign in to vote.
3.28/5 (28 votes)
30 May 200611 min read 67.4K   83   9
This article intends to make the project planning stage much easier than the development stage, and once it’s done, the development can, and usually will, just fall into place. Here’s the step-by-step guide…

Introduction

There’s plenty of information on the Internet about how to write code, how to develop software and web sites, and even how to market your project once it’s done. So what’s missing?

One of the most important and often time consuming steps in the development process is planning. There’s little doubt that detailed specifications of what your project will do and how it will be built will greatly reduce the time and complexity of the development, testing, and maintenance.

Without a systematic approach to writing detailed plans for a project, it often seems much easier to jump into development and start prototyping with little or no planning at all. This often leads to rewriting sections of code that don’t quite achieve the goals, or even the whole project becoming messy and inefficient.

With an easy, systematic way to write the plans, the whole development process becomes amazingly simple and efficient. It can also ensure that the end product does exactly what it’s supposed to, with little or no additional guidance from the owner or client.

This article intends to make the planning stage much easier than the development stage, and once it’s done, the development can, and usually will, just fall into place. Here’s the step-by-step guide…

Note: Keep in mind that the plans you write will undoubtedly change throughout the development stage. The plans are still invaluable as they document the changes made to any part of the application. All team members should have easy access to the latest version of the plans. Don’t bother trying to get your plans 100% perfect (unless you plan to hand it all over to another developer to take over) because you can add more detail as you go.

Project Summary

The first and simplest step is to write up a summary of what the project is for. This shouldn’t be more than a couple of paragraphs. Just imagine you have 5 minutes to tell someone what you want to build, just to give them a very basic idea.

Example:

Blog Manager Summary

The blog manager will allow multiple users (designated by the administrator) to log in to a secure administration section to add a new blog post every couple of days. The blogs will be displayed on the web site for visitors to read, and for search engines to index.

Project Goals

The second step is to note down the overall goals of the project. This is the checklist to know when the project is complete.

The easiest way is to list them as points.

Example:

Blog Manager Goals

  • Administrators must be able to create and manage accounts for users.
  • Users must be able to edit their own account.
  • Users must be able to log in to post or edit their blogs.
  • Administrators must be able to review and manage blog posts (to remove bad language, etc.).
  • Managing users and blog posts must be secure.
  • Visitors must be able to view the summaries of all the blog posts, then select a post to read all the information.
  • Search engines must be able to crawl and index the blog posts.
  • Visitors and email spiders must not be able to see users’ email addresses.

Project Features

The third step is to outline each feature that the project will include. Up to a couple of paragraphs can be used to describe the details of each feature.

The information for each of these features will become more detailed as you go through each of the following steps.

Example:

Blog Manager Features

Users

Administrators can log in to create and manage user accounts. Users can log in to edit their own account.

Blog Posts

Users can log in to create and manage their blog posts. Visitors can view the latest public posts.

Feature Actions

The fourth step is to list and define everything that can be done within the project, relating to each feature. Additional information can be noted down beside the actions to describe some constraints when performing the action, but some are fairly obvious and require no explanation.

If you prefer Use Case diagrams for defining your feature actions, you can export the diagram into this section of your plans.

Example:

Blog Manager Features

Users

Administrators can log in to create and manage user accounts. Users can log in to edit their own account.

Actions:

  • List users (admin)
  • Create user (admin)
  • Edit user (admin)
  • Delete user (admin)
  • Login (user)

Blog Posts

Users can log in to create and manage their blog posts.

Actions:

  • List blog posts (user)
  • Create blog post (user)
  • Edit blog post (user)
  • Delete blog post (user)
  • View public posts (visitor) – Displays summary of all posts, latest first.
  • View public post (visitor)

Feature Attributes

The fifth step is to list the attributes that will be related to each feature.

If you prefer UML Class diagrams for defining your feature attributes, you can export the diagram into this section of your plans.

Example:

Blog Manager Features

Users

Administrators can log in to create and manage user accounts. Users can log in to edit their own account.

Actions:

  • List users (admin)
  • Create user (admin)
  • Edit user (admin)
  • Delete user (admin)
  • Login (user)

Attributes:

  • Username
  • Password
  • First name
  • Last name
  • Email
  • Bio

Blog Posts

Users can log in to create and manage their blog posts.

Actions:

  • List blog posts (user)
  • Create blog post (user)
  • Edit blog post (user)
  • Delete blog post (user)
  • View public posts (visitor) – Displays summary of all posts, latest first.
  • View public post (visitor)

Attributes

  • Title
  • Content
  • Date published
  • Author
  • Views

Workflow Procedures

The sixth step is to describe how everything will be done. It’s up to you to decide how much detail you use for each operation. Too much detail will take too much time, and not enough detail may cause hassles during development.

The simplest way to do this (which can be used for most operations) is a numbered list of each step. This method doesn’t allow for too much dynamic complexity but it’s quick and easy to do.

Another common way to do it is to use workflow diagrams, such as in Microsoft Visio or Microgold WithClass. These can usually be exported and placed into your document.

It’s up to you to choose the appropriate level of detail for each operation, and whether to use just a list of steps or a detailed workflow diagram.

Just change the bullets under Actions into headings, and add the details under each one.

Example:

Blog Manager Features

Users

Administrators can log in to create and manage user accounts. Users can log in to edit their own account.

List users (admin)

Administrators can view a list of users.

  1. Log in
  2. Click “Users”
  3. Users index is displayed with name, email, number of posts, as well as an edit and a delete button for each.
Create user (admin)

Administrators can create users.

  1. List users
  2. Click “Create User”
  3. Enter user’s first name, last name, email address, username, password, bio
  4. Select whether the user is an administrator
  5. Submit
  6. User is created
Edit user (admin)

Administrators can edit any user.

  1. List users
  2. Select user to edit
  3. Edit user’s first name, last name, email address, username, password, bio
  4. Edit whether the user is an administrator
  5. Submit
  6. User is updated
Delete user (admin)

Administrators can delete any user.

  1. List users
  2. Select user to delete
  3. Confirm delete
  4. User is deleted along with all their blog posts
Login (user)

Users can log in to make posts.

  1. Go to site
  2. Enter username and password
  3. Credentials are validated and user is logged in

Attributes:

  • Username
  • Password
  • First name
  • Last name
  • Email
  • Bio

Blog Posts

Users can log in to create and manage their blog posts.

List blog posts (user)

Users can view a list all their posts.

  1. Log in
  2. Click “Blog Posts”
  3. Blog posts are displayed with title, summary, author, date, as well as an edit and a delete button
Create blog post (user)

Users can create blog posts.

  1. List blog posts
  2. Click “Create Blog Post”
  3. Enter post title, content, author, status (draft, published)
  4. Submit
  5. Post is created
Edit blog post (user)

Users can edit any of their posts.

  1. List blog posts
  2. Select blog post to edit
  3. Edit post title, content, author, status (draft, published)
  4. Submit
  5. Post is updated
Delete blog post (user)

Users can delete any of their posts.

  1. List blog posts
  2. Select blog post to delete
  3. Confirm delete
  4. Post is deleted
List public posts (visitor)

Visitors can view a list of all public posts, latest first.

  1. Go to web site
  2. Public posts are listed with summary, author, date published
View public post (visitor)

Visitors can view any public post.

  1. List public posts
  2. Select post
  3. Post is displayed in full

Attributes:

  • Title
  • Content
  • Date published
  • Author
  • Views

To give you an idea of how workflow diagrams could be used, here’s an example of one for the Login operation. You’ll notice that it has a lot more detail, which is good for some cases, but for a typical login situation, it’s probably not worth the time.

Example Document

Here's a complete example requirements document. You'll probably have a lot more features in your application but you should still be able to detail most of it using this technique.

Blog Manager Requirements

Summary

The blog manager will allow multiple users (designated by the administrator) to log in to a secure administration section to add a new blog post every couple of days. The blogs will be displayed on the web site, for visitors to read, and for search engines to index.

Goals

  • Administrators must be able to create and manage accounts for users.
  • Users must be able to edit their own account.
  • Users must be able to log in to post or edit their blogs.
  • Administrators must be able to review and manage blog posts (to remove bad language, etc.).
  • Managing users and blog posts must be secure.
  • Visitors must be able to view the summaries of all the blog posts, then select a post to read all the information.
  • Search engines must be able to crawl and index the blog posts.
  • Visitors and email spiders must not be able to see users’ email addresses.

Features

Users

Administrators can log in to create and manage user accounts. Users can log in to edit their own account.

List users (admin)

Administrators can view a list of users.

  1. Log in
  2. Click “Users”
  3. Users index is displayed with name, email, number of posts, as well as an edit and a delete button for each.
Create user (admin)

Administrators can create users.

  1. List users
  2. Click “Create User”
  3. Enter user’s first name, last name, email address, username, password, bio
  4. Select whether the user is an administrator
  5. Submit
  6. User is created
Edit user (admin)

Administrators can edit any user.

  1. List users
  2. Select user to edit
  3. Edit user’s first name, last name, email address, username, password, bio
  4. Edit whether the user is an administrator
  5. Submit
  6. User is updated
Delete user (admin)

Administrators can delete any user.

  1. List users
  2. Select user to delete
  3. Confirm delete
  4. User is deleted along with all their blog posts
Login (user)

Users can log in to make posts.

  1. Go to site
  2. Enter username and password
  3. Credentials are validated and user is logged in

Attributes:

  • Username
  • Password
  • First name
  • Last name
  • Email
  • Bio

Blog Posts

Users can log in to create and manage their blog posts.

List blog posts (user)

Users can view a list all their posts.

  1. Log in
  2. Click “Blog Posts”
  3. Blog posts are displayed with title, summary, author, date, as well as an edit and a delete button
Create blog post (user)

Users can create blog posts.

  1. List blog posts
  2. Click “Create Blog Post”
  3. Enter post title, content, author, status (draft, published)
  4. Submit
  5. Post is created
Edit blog post (user)

Users can edit any of their posts.

  1. List blog posts
  2. Select blog post to edit
  3. Edit post title, content, author, status (draft, published)
  4. Submit
  5. Post is updated
Delete blog post (user)

Users can delete any of their posts.

  1. List blog posts
  2. Select blog post to delete
  3. Confirm delete
  4. Post is deleted
List public posts (visitor)

Visitors can view a list of all public posts, latest first.

  1. Go to web site
  2. Public posts are listed with summary, author, date published
View public post (visitor)

Visitors can view any public post.

  1. List public posts
  2. Select post
  3. Post is displayed in full

Attributes:

  • Title
  • Content
  • Date published
  • Author
  • Views

Conclusion

Once you’ve documented all the features in your project up to this stage, you’ve completed your requirements document. You can give this document to your team so that they know exactly what the project will be able to do. You can use the document to get quotes from third parties for sections of the project that you’re outsourcing. Most investors would also like to see this document so they know exactly what they're investing in.

It is possible to develop simple applications without any further documentation. If you have experienced team members who work well, you may decide that a technical specification isn’t worth the time. The decision should also factor in the value of having a technical specification during maintenance, especially if the maintenance team changes.

Look out for the next article explaining how to write your project's technical specification.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Founder SoftwareMonkeys
United States United States
John is the founder of SoftwareMonkeys (www.softwaremonkeys.net) and the creator of various open source projects including:

- WorkHub modular ASP.NET framework (and included project management/organization modules)
- SiteStarter ASP.NET base framework and libraries (reused in projects such as WorkHub).

Comments and Discussions

 
GeneralThank you very much ! Pin
Mazen el Senih31-May-13 3:34
professionalMazen el Senih31-May-13 3:34 
GeneralOpen source requirements planning and organization software now available Pin
John Rebbeck18-Jan-11 10:41
John Rebbeck18-Jan-11 10:41 
GeneralHelping Hand Pin
P P Vilsad16-Sep-08 10:00
P P Vilsad16-Sep-08 10:00 
GeneralGreat for Small Projects Pin
charleslbryant7-Jun-06 6:09
charleslbryant7-Jun-06 6:09 
GeneralThanks for this! Pin
sandimcp7-Jun-06 5:34
sandimcp7-Jun-06 5:34 
GeneralI found this helpful Pin
Boro_Bob6-Jun-06 5:36
Boro_Bob6-Jun-06 5:36 
Generalhummm... Pin
BestOfBreeds5-Jun-06 15:37
BestOfBreeds5-Jun-06 15:37 
GeneralOther than your workflow diagram Pin
Ennis Ray Lynch, Jr.31-May-06 4:57
Ennis Ray Lynch, Jr.31-May-06 4:57 
GeneralSystem Analyst Pin
CalvinHobbies30-May-06 21:40
CalvinHobbies30-May-06 21:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.