Skip to content

System for Universities where professors can make public and private laboratory lessons for students and where students will send work and get marks.

Notifications You must be signed in to change notification settings

DmytroLamashevskyi/LRRS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lab Report Repository (LRR)

Web applications for online student learning. makes it possible to add courses and post grades with lessons. Also the ability to take tests and the ability for students to upload laboratory work.

Screenshots

Access Managment

Access Managment

Cource Students Managment

CourceStudentsManagment Screenshot

Cources

Cources Screenshot

Grades

Grades Screenshot

Lectures

Lectures Screenshot

User Managment

UserManagment Screenshot

Other Screenshots

Used tools

Run Locally

Clone the project

  git clone https://github.com/DmytroLamashevskyi/LRRS.git

Open to the project

  ..\LRRS\LRRS\LRRS.sln

Install dependencies

    # Updates all packages in all projects in the solution
    Update-Package 
    Update-Package –reinstall

Change data in file appsettings.json

{
  "ConnectionStrings": {
    "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-WebApp-171D3A48-B83E-41C5-87F4-9D57B5441C7E;Trusted_Connection=True;MultipleActiveResultSets=true"
  }  

Update SuperAdmin user

  "SuperAdmin": { 
    "UserName": "superadmin",
    "FirstName": "Admin",
    "LastName": "Administrator",
    "Email": "[email protected]",
    "PasswordHash": "123Pa$$word." //PaswordData
  },

Update mail stmp server

  "EmailConfiguration": {
    "From": "[email protected]",
    "SmtpServer": "smtp.gmail.com",
    "Port": 465,
    "Username": "login",
    "Password": "password"
  },

Update Password requirements

  "PasswordRequirements": {
    "RequiredLength": 6,
    "RequiredUniqueChars": 0,
    "RequireNonAlphanumeric": false,
    "RequireLowercase": true,
    "RequireUppercase": false,
    "RequireDigit": false
  },

Add migration for Data base

PM> Add-Migration <Name>

Run migration for Data base

PM> Update-Database

About migration in EF Core

Run Application and login using SuperAdmin Credentials

Installation on Server

Publish an ASP.NET Core app to IIS Publish an ASP.NET Core App to Azure

Remember to install DB credentials and run Migration on VS

Roadmap

  • Release V0.1b

    • Register and Login for Users
    • User Management
    • Adding Courses
    • Course Management
    • Add students to Course
    • Add Lessons
    • Added Lessons TextArea
    • Adding Grades
    • Add Lessons
    • Prepare Language support
  • Release V0.2b

    • Block for Users
    • File Managment
    • File Upload
    • File Upload Limits (for DB 3Mb Max)
    • Adding Files in Database and on Server
    • Added File unique name generation
    • Add password cources
    • Update Language support Views
    • Added mail change Password
    • Added mail password confirmation
  • Release V0.3b

    • Add statistics for Cource
    • Add upload Files to Lecture
    • Add Lecture deadline
    • Add mailing to Students (add checkbox for this)
    • Adding pdf file generating
    • Bugfix
    • Refactoring
  • Release V0.4b

    • Add Tests environment
    • Add News Envierment
    • Adding Administrator Tab for application settings managment
    • Finish implementing Language pages
    • Add Paging for Cources and Users panels
    • Refactoring
  • Release V0.5b

    • Add Version controll for DB
    • Add mail information sending

Authors

🛠 Skills

Javascript, HTML, CSS, ASP.NET CORE MVC, C#, Bootstrap, EF Core