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.
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": "superadmin@gmail.com",
"PasswordHash": "123Pa$$word." //PaswordData
},
Update mail stmp server
"EmailConfiguration": {
"From": "mail@gmail.com",
"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
Run Application and login using SuperAdmin Credentials
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
-
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
Javascript, HTML, CSS, ASP.NET CORE MVC, C#, Bootstrap, EF Core