Skip to content

Commit

Permalink
Merge pull request #283 from MonoInfinity/nhan-v3
Browse files Browse the repository at this point in the history
UPDATE - document
  • Loading branch information
Heaty566 authored Oct 27, 2021
2 parents 4d6cef2 + 3d948a0 commit 3736b50
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 9 deletions.
2 changes: 1 addition & 1 deletion FPTBlog/wwwroot/style/styles.css

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,20 @@

[![Grocery Store Logo](doc/logo.svg)](https://fptblog.vinhnhan.com)

## [Live Demo](https://fptblog.vinhnhan.com) - [Live Document](https://fptblog.vinhnhan.com)
## [Live Demo](https://fptblog.vinhnhan.com) - [Live Document](https://heaty566.github.io/fpt-blog-doc/document.pdf)

## Case Study

Trong kỷ nguyên số, nguồn thông tin và dữ liệu trên Internet được xem như một tài nguyên tri thức vô cùng phong phú. Con người có thể dễ dàng tìm kiếm thông tin,
dữ liệu thông qua nguồn tài nguyên này. Tuy nhiên, với biển dữ liệu lớn này, SV đang gặp khó khăn trong việc chọn lọc nội dung, chủ đề cấp thiết nhất cho ngành học,
môn học của mình tại trường ĐH. Bên cạnh đó, những SV đã trích lọc được những kinh nghiệm, kiến thức thông qua các môn học,
các chủ đề lại không có nền tảng để phổ biến đến đúng đối tượng-là các sinh viên trong trường.

Hệ thống ra đời nhằm hỗ trợ các bạn sinh viên trường F, là những writer, reader theo các chuyên mục, chuyên ngành hay môn học nào đó.
Nơi đây, các bạn writer có thể viết bài, đăng bài; các bạn reader được cập nhật các nội dung có chất lượng, gần gũi với các vấn đề học tập,
cá nhân mình đang gặp phải. Ngoài ra, các mentor/lecturer tham gia với vai trò kiểm duyệt nội dung bài. Các bài blog có nội dung hay,
thiết thực, được quan tâm nhiều, được phản hồi nhiều sẽ được trao các phần thưởng danh dự tương ứng.

## Feature by role

- Common Role
Expand Down
Binary file removed doc/admin-profile.png
Binary file not shown.
Binary file removed doc/admin-user-list.png
Binary file not shown.
39 changes: 32 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
version: "3"
services:
server:
build: .
server-1:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog
ports:
- 1000:80
container_name: mono-fpt-v2-blog-1
networks:
- reverse-proxy
expose:
- 80
volumes:
- .config:/app/config
- .share:/app/wwwroot
- ./config:/app/config
- ./share:/app/wwwroot/public
server-2:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog-2
networks:
- reverse-proxy
expose:
- 80
volumes:
- ./config:/app/config
- ./share:/app/wwwroot/public
server-3:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog-3
networks:
- reverse-proxy
expose:
- 80
volumes:
- ./config:/app/config
- ./share:/app/wwwroot/public

networks:
reverse-proxy:
external: true

0 comments on commit 3736b50

Please sign in to comment.