All Projects → codelitdev → Courselit

codelitdev / Courselit

Licence: agpl-3.0
Start your own online teaching business. Features include course maker, students manager, payments and more.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Courselit

Cmseek
CMS Detection and Exploitation suite - Scan WordPress, Joomla, Drupal and over 180 other CMSs
Stars: ✭ 1,296 (+1675.34%)
Mutual labels:  wordpress, cms, cms-framework
Nodepress
😎 RESTful API service for Blog/CMS, powered by @nestjs
Stars: ✭ 829 (+1035.62%)
Mutual labels:  blog, cms, cms-framework
Blog Post Workflow
Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed
Stars: ✭ 910 (+1146.58%)
Mutual labels:  blog, wordpress, ghost
Setup Ghost Blog
Script to install your own Ghost blog, with Nginx and ModSecurity/Naxsi web application firewall. Supports multiple blogs.
Stars: ✭ 140 (+91.78%)
Mutual labels:  blog, wordpress, ghost
Boo
Boo - A beautiful, clean and responsive theme for Ghost.
Stars: ✭ 176 (+141.1%)
Mutual labels:  blog, wordpress, ghost
Borgert Cms
Borgert is a CMS Open Source created with Laravel Framework 5.6
Stars: ✭ 298 (+308.22%)
Mutual labels:  blog, cms, cms-framework
Hrcloud2
A full-featured home hosted Cloud Drive, Personal Assistant, App Launcher, File Converter, Streamer, Share Tool & More!
Stars: ✭ 134 (+83.56%)
Mutual labels:  self-hosted, wordpress, cms
Casper
Casper 👻 theme for Wordpress
Stars: ✭ 560 (+667.12%)
Mutual labels:  blog, wordpress, ghost
Hikkoshi
Hikkoshi the Blog Migration Tool
Stars: ✭ 7 (-90.41%)
Mutual labels:  blog, ghost
Known
A social publishing platform.
Stars: ✭ 862 (+1080.82%)
Mutual labels:  cms, cms-framework
Essay
A blog system based on Nuxt.js
Stars: ✭ 913 (+1150.68%)
Mutual labels:  blog, cms
Wp Multitenancy Boilerplate
WordPress multitenancy boilerplate configured and managed with Composer and PHP dotenv.
Stars: ✭ 24 (-67.12%)
Mutual labels:  wordpress, cms
Tolaria
A Rails CMS framework for making your editors happy.
Stars: ✭ 33 (-54.79%)
Mutual labels:  cms, cms-framework
Bludit
Simple, Fast, Secure, Flat-File CMS
Stars: ✭ 824 (+1028.77%)
Mutual labels:  blog, cms
Liebling
Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼
Stars: ✭ 792 (+984.93%)
Mutual labels:  blog, ghost
Maple
🍁A beautiful blog theme for Ghost
Stars: ✭ 27 (-63.01%)
Mutual labels:  blog, ghost
Ezlog
Easy blog system powered by django
Stars: ✭ 34 (-53.42%)
Mutual labels:  blog, cms
Punchcard
The Punchcard CMS
Stars: ✭ 29 (-60.27%)
Mutual labels:  cms, cms-framework
Phpwcms
Flexible, fast, powerful, customer, developer friendly web content management system and cms framework
Stars: ✭ 73 (+0%)
Mutual labels:  cms, cms-framework
Cusca
A ghost theme
Stars: ✭ 42 (-42.47%)
Mutual labels:  blog, ghost

Website | Getting started | Documentation

Status Chat Downloads Last commit Lgtm License

Introduction

CourseLit is a content management system (aka CMS) for starting your own online course website. It is designed keeping educators in mind. Consider it an open-source alternative to those paid tutoring sites.

It comes pre-equipped with all the basic tools you'd require to efficiently run and administer your online teaching business. Features include course authoring, student management, payment processing (via Stripe), website customization and analytics (very limited as of now).

Check out this live example to see what you can build with CourseLit. Click here.

Screenshot

courselit cms screenshot

Getting Started

To install CourseLit on your cloud server, please follow our official guide.

Development

The project is organised as a mono-repo. It uses Lerna for managing the mono-repo. You need to run both backend and frontend servers, located in packages/api and packages/app respectively, in order to run the portal in its entirety.

We recommend using Visual Studio Code for development as it allows you to develop your code in isolation inside a container using the Remote - Containers extension. Install both the editor and the extension.

Once you have this setup, follow these steps.

  1. Add the following entries to your operating system's host file. These are required for multitenancy.
127.0.0.1       domain1.localsite.com
127.0.0.1       domain2.localsite.com
127.0.0.1       localsite.com
  1. Press Ctrl + Shift + P to open the command palette of Visual Studio Code, type in "Remote-Containers: Open Workspace in Container" and press enter after selecting it.

  2. Once the code opens up, open two terminal windows in your Visual Studio Code and type in the following commands to start the backend and frontend servers respectively.

The above commands are also exported as bash aliases, so you can simply type api and app in separate terminal windows to run backend and frontend servers respectively.

  1. Inside the development container, open up a terminal window and type the following commands in sequence.
mongo
use app
db.domains.insert({ name: "domain1" })
db.domains.insert({ name: "domain2" })

This will enable the invidual sites listed in step 1.

  1. Visit domain1.localsite.com to see CourseLit in action.

Writing Your Own Widget

You can add additional functionality to your application via building your own widgets. Look at this document.

Environment variables.

SITE_URL

The public address of the site. Required parameter. No default value.

MEDIA_FOLDER

A folder on your host machine while will be mounted as a volume to all the containers. It is required for storing database files, user uploaded files, ssl certificates and everything else. Required parameter. No default value.

MONGO_ROOT_USERNAME, MONGO_ROOT_PASSWORD

These are required for correctly initializing an admin user in the mongo db instance running inside the container named db. Read more about these here.

DB_CONNECTION_STRING

The connection string to a mongodb instance running in the db container. Required parameter. The value should be mongodb://<MONGO_ROOT_USERNAME>:<MONGO_ROOT_PASSWORD>@db where MONGO_ROOT_USERNAME and MONGO_ROOT_PASSWORD are the same variables defined above.

JWT_SECRET

A random string to use as a secret to sign the JWT tokens the API generates. Required parameter. No default value.

JWT_EXPIRES_IN

The duration after while the generated JWT expires. For more information check out here. Optional parameter. Defaults to 1d.

DOMAIN

The domain name for which the ssl certificate is issued. Optional parameter, only required if using a SSL certificate. No default value.

TAG

The Docker tag. To see what all tags are available, visit CourseLit on Docker Hub.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].