Skip to content

Commit

Permalink
add badges
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsnaps committed Sep 9, 2024
1 parent 8c46f5c commit bbaae17
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# TalentCampus - LMS

<div align="center">
<a href="https://gitpod.io/from-referrer/">
<img src="https://gitpod.io/button/open-in-gitpod.svg" alt="Logo" width="auto">
</a>

<a href="https://koyeb.com">
<img src="https://www.koyeb.com/static/images/icons/koyeb.svg" alt="Logo" width="80" height="80">
</a>
</div>

TalentCampus is an innovative Learning Management System (LMS) designed to bridge the gap between education and employment. Our platform provides a seamless, interactive, and comprehensive learning experience for students, educators, and employers.

## Project Vision
Expand Down
2 changes: 1 addition & 1 deletion backend_lms/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def create_env_file():

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = os.environ.get('DEBUG', 'false').lower() != 'false'
PORT = os.getenv('PORT', 8000)
PORT = int(os.getenv('PORT', 8000))

if DEBUG:
ALLOWED_HOSTS = ["localhost","127.0.0.1","0.0.0.0","[::1]"]
Expand Down

0 comments on commit bbaae17

Please sign in to comment.