DigitalFlow / Open-Certification-Trainer

A free and open website for learning and training for certifications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Certification Trainer Build Status

This is a website for assisting in training for certifications. It was built using the awesome React framework.

Purpose

When having to learn for certifications, it is often useful to use multiple choice questions, as they are a common certification format. This website is able to host courses with questions and their corresponding answers.

You can view them and take assessments, where your knowledge is checked. More and more functions will be coming as the project progresses.

Features

  • Certification Management (Create, Edit)
  • User Management
  • Post (News) Management
  • Learn using overview modes
  • Train using assessment mode
  • Find your weaknesses using session history and charts

Installation

This project was tested on Arch Linux, Ubuntu and Windows 10. You'll need to have NodeJS and PostgreSQL installed. For NodeJS, the latest LTS version is recommended, which is 8.9.4 at the time of writing. PostgreSQL should be used in at least version 10.1.

Restore the database schema using the databaseSchema.sql file in the project root while following the instructions in there.

For restoring, you should use psql, which is bundled with every PostgreSQL installation. For me it was installed at C:\Program Files\PostgreSQL\10\bin. I added it to my Windows path, so that it can be used without having to specify the full folder every time. When installing PostgreSQL on Linux, psql should become available automatically.

Create a user named dev and give it a password using the command sudo -u postgres createuser -P -d dev. For importing the database schema, open your PowerShell and enter: psql -U postgres -h localhost -d postgres -f "C:\Open-Certification-Trainer\dataBaseSchema.sql"

Where -U is the user name of your root user (usually postgres), -h is the server (can be ommitted if localhost), -d is the database (postgres is the default database) and -f is the file location of your database schema.

After restoring the database, there will be an admin user for open certification trainer with user name and password root. Afterwards, clone the project, navigate to the project folder using your PowerShell / Bash, and launch

npm install

Once this installed all packages, you can edit the .env.config, where you'll have to update the database user login settings for your environment. For production use, you should generate some key for usage as your own JWT secret. When done, you can start the website by running

npm start.

Afterwards the site can be accessed on http://localhost:8080.

If you're receiving an error like

const { token } = req.cookies;

SyntaxError: Unexpected token {

you should consider updating your node server. As described above, we recommend using the latest LTS version, which is 8.9.4 at the time of writing.

You can also configure the site to be accessed using a DNS name. Use the CERT_TRAINER_VHOST variable and set it to the domain name you'd like. Afterwards make sure to edit the /etc/hosts file (Linux + Windows) on your host server. If you plan on using this tool in your company, you need to configure your company's DNS server to redirect to your host server for the domain you configured.

For production use, consider running the server using forever.

Courses

Courses can be imported using the Certification Management page. You can press "Create New Certification" and then either enter your certification manually or import a JSON file. For the format of your courses, please take a look at the demoCert.json file in the project root. IDs for the certification, questions and answers don't have to be set in your import file, they will be generated automatically if they're missing.

Impressions

Sign Up

signup

Log In

login

Study

Select a certification / course and take a look at the questions contained including the correct answers. study

Train

Take an assessment for a certification. You will have to answer all questions contained in the course, but questions and answers are shuffled. Once you're done, the course will be regarded as passed, if you answered 70% or more of the questions correctly. train

Check your learning progress

check

GUI Management of Certifications

management

Post / News Management

posts

License

Licensed using the MIT license, happy learning!

About

A free and open website for learning and training for certifications

License:MIT License


Languages

Language:TypeScript 98.7%Language:JavaScript 0.7%Language:EJS 0.5%Language:Dockerfile 0.1%