Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zgunz42/ror-blog
this my portpolio & blog website
https://github.com/zgunz42/ror-blog
Last synced: 25 days ago
JSON representation
this my portpolio & blog website
- Host: GitHub
- URL: https://github.com/zgunz42/ror-blog
- Owner: zgunz42
- Created: 2016-04-13T06:54:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:42:23.000Z (11 months ago)
- Last Synced: 2024-05-01T16:47:42.133Z (6 months ago)
- Language: CSS
- Size: 266 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Planning our application
1. Answer Questions
- What are we building?
- Who are we building it for?
- What features do we need to have?
2. User Stories
3. Model our Data
4. Thinking through the page we need in our app
## Questions
1. What are we building? We are building a personal site. A place where
we can blog, share example of our work, and have people contact.
2. Who are we building it for? We are building it for ourselves, but also the community.
Share what we are learning by blogging is a great way to learn for ourselves,
but we teach other in the process. Show potential employers that we
know what we are doing.
3. What features do we need to have?
- Posts
- Create/Update/Delete
- Markdown
- Syntax highlighting
- Comments (Disqus)
- Projects
- Create/Update/Delete
- Contact
- Contact form
- Sendgrid
- User (Devise)
## User Stories
> As a blank, I want to be able to blank, so that blank.
- As a User, I want to be able to create posts, so that I can share what I am learning on my blog
- As a User, I want to be able to edit & destory that post, so I can manage my blog
- As a User, I want to be able to write post in markdown format so that it's easy for me to write posts
- As a User, I want to be able to highlight the various syntax of code blocks that I share on my blog.
- As a User, I want to show the visitor and potential employess example of my work , or stuff I've build
- As a User, I want to be able to have visitors contact me through a form on my site
- As a User, I want wisitor to be able to leave comment on my blog posts.
## Model our Data
### Post ###
* title:string
* content:text
### Project ###
* title:string
* description:text
* link:string
### User ###
## Thinking through the page we need in our app
- Home
- Posts
- Posts
- Projects
- Projects
- Contact