profile_blog is a simple blog and portfolio page application built with AngularJS, Node.js, less and MongoDB. Based on a blog i read about creating M.E.A.N app for blog https://scotch.io/tutorials/setting-up-a-mean-stack-single-page-application http://travistidwell.com/blog/2015/01/20/how-to-build-a-mean-web-application/
- AngularJS
- Bootstrap
- MongoDB
- Redis
- Node.js
- Create Article
- Edit Article
- Delete Article
- Add tags to Article
- Add Authentication to the administration
- Add registration for new user
- Handle Logout
- Add Like to post
You need redis-2.8.9
up and running on port 6379
You need mongodb-2.4.10
up and running on port 27017
profile_blog$ sudo mongod
profile_blog$ redis-server
install gulp and the gulp dependencies:
`profile_blog$ npm install`
Edit app/js/app.js and replace the value of `options.api.base_url` to match your server configuration.
Run gulp to build the scripts of the AngularJS app with:
`profile_blog$ gulp`
Go to the api folder and install the dependencies:
`profile_blog/api$ npm install`
Edit api/blog.js and replace the value of Access-Control-Allow-Origin to match your server configuration.
Run the application:
`profile_blog/api$ node blog.js`
`profile_blog/api$ npm install -g local-web-server`
`profile_blog/app$ ws`
You can now open your browser: `http://localhost/profile_blog/app`
Create a first account on `http://localhost/profile_blog/app/#/admin/register`
To access the Administration, go to `http://localhost/profile_blog/app/#/admin/login`
- Search indexing of redis data
- Twitter feed
- Project details
- Secondary fixes to css
- Add Comments to post
- Add Like to comment
- Add users management
The MIT License (MIT)
Copyright (c) 2014 Chintamani Lonkar (chintamani.lonkar@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.