Hunar is a MEAN stack web application for Artists to sell their Art Work and to receive On Demand orders online.
- Product Management
- Cart Management
- Order Management
- On Demand Orders with Image Uploads
- User Session Management
- Responsive Design
- Support for MongoDB
- Password Reset Emails
- OAUTH2.0 and Passport Authentication
Hunar uses a number of open source projects to work properly:
- Angular - A Javascript Framework by Google!
- Twitter Bootstrap - great UI boilerplate for modern web apps
- node.js - evented I/O for the backend
- Express - fast node.js network app framework
- MongoDB - A NoSQL database
Hunar requires Node.js v4+ to run.
Setup database and provide database configuration in hunar_app/config/config.json
"MONGODB_URI": "mongodb://localhost:27017/hunar?authSource=hunar",
"MONGODB_USER": "hunarAdmin",
"MONGODB_PASS": "password"
Install the dependencies and devDependencies and start the server.
$ cd hunar_app
$ npm install -d
$ node app
For production environments...
$ npm install --production
$ NODE_ENV=production node app
Install the dependencies and devDependencies and start the client.
$ cd hunar_app/public/frontend
$ npm install
$ ng serve -o
For production environments...
$ cd hunar_app/public/frontend
$ npm install --production
$ NODE_ENV=production node app
- Write MORE Tests
- Add Night Mode
MIT
Free Software, Hell Yeah!
Suggestions/Improvements are welcome. Want to develop together? You are most welcome.