GithubHelp home page GithubHelp logo

muhaisen / dms Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nayeemazad/dms

0.0 0.0 0.0 105.61 MB

Document Management System [ C# ASP.NET core 2.1 (MVC ) , 3-tier architecture, EF Code First, microsoft sql server ]

C# 0.69% TSQL 0.08% HTML 44.02% JavaScript 49.35% CSS 5.83% PHP 0.02%

dms's Introduction

DMS -Document Management System

Technologies

C# ASP.NET core 2.1 (MVC ) , 3-tier Architechture, EF Code First

Features

  • Admin Creates Users & assign Roles
  • User get notified by email for credentials
  • User can creates own categories
  • User can upload own documents
  • User can Search & Downloads

Screenshots

demo

demo

demo

demo

Installation

step 1: $ git clone https://github.com/nayeemazad/DMS.git
Step 2: Set gmail credential for sending mail at DMS.WebUI/appsettings.json file

"SendMail": {
    "Setting": {
      "Gmail": "[email protected]",
      "Password": "your_gmail_password",
    }
  }

Step 3: Set ConnectionStrings for Database connection
"ConnectionStrings": {
    "DmsDb": "Server=your_server_name;Initial Catalog=your_database_name;Integrated Security=True;User Id=user_id;Password=password;"
  }

Step 4: Go to Package manager console and then run command

 PM> Update-Database
. This will create database as specified in the ConnectionStrings and will execute the migration files.

Step 5: Now insert an entry for admin at user table from database sql interface

USE [DMS]
GO

INSERT INTO [dbo].[Users]
           ([UserEmail]
           ,[UserName]
           ,[password]
           ,[UserRole])
     	VALUES
           ('[email protected]',
            'Admin',
            'admin',
            'Admin')
GO

Final Step: Run your project and it will navigate to browser http://localhost:{port}

dms's People

Contributors

nayeemazad avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.