Migarl / smartbeans

Programming learning platform for C and Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SmartBeans v3

What is SmartBeans?

SmartBeans is a gamified learning platform for programming languages. More screenshots here!

Installation instructions

Prerequisites

  • Install npm nodejs.
  • Install postgres

Installation

  1. Clone the repository.
  2. Create a database and database user:
    • mysql
    CREATE DATABASE smartbeans;
    CREATE USER 'user'@'localhost' IDENTIFIED BY 'change-this-password';
    GRANT ALL PRIVILEGES ON smartbeans . * TO 'user'@'localhost';
    • Configure knexfile.js
      • change db url
      • change probably the port number
      • add database name
      • add database user
      • add database user password
  3. Configure the following on src/config.ts:
export default {
  sessionDuration: 43200,
  staticAchievementPath: '/achievements',
  staticAssetPath: '/assets',
  padUrl: 'url-to-hedgedoc',
  sandboxUrl: 'url-to-sandbox',
  achievementUrl: 'url-to-achievement-checker',
  registrationKeys: ['change-me'],
  apiKeys: ['change-me'],
  TOKEN_LENGTH: 36,
  ltiConsumerSecret: 'secret',
  leaderboardUsersLastSubmissionTimeout: 1000 * 60 * 60 * 24 * 30
};
  1. Initialize the node_modules via running:
npm install
  1. Install knex-cli
npm install knex -g
  1. Run migrations
knex --esm migrate:latest
  1. Add assets
  • Clone the smartbeans-content repository.
  • Run:
    1. cd smartbeans-content
    2. python src/generate-output.py
    3. `cp out/assets smartbeans/static/assets
  1. Build smartbeans
npm run build
  1. Create a systemd service smartbeans.service:
[Unit]
Description=The SmartBeans Backend
After=network.target

[Service]
Type=simple
User=change-me
Group=change-me
WorkingDirectory=path-to-smartbeans-build-folder
ExecStart=PORT=8080 node index.js
Restart=on-failure
# Other restart options: always, on-abort, etc

[Install]
WantedBy=multi-user.target
  1. Start the service:
systemctl start smartbeans.service
  1. Insert asset ids into smartbeans Go in the smartbeans-content repository and run the following:
python pipeline.py --url https://smartbeans-domain.tld/api/admin/asset --admin-api-key apikey --data out/assets-backend.json

Updates

For updates call git pull, build smartbeans and restart the service.

License

Copyright (c) 2021 Ole Umlauft and other contributors

All contents of this repository are provided under the MIT License. See LICENSE for the full text.

About

Programming learning platform for C and Python

License:MIT License


Languages

Language:Svelte 54.4%Language:TypeScript 37.1%Language:JavaScript 7.6%Language:CSS 0.7%Language:HTML 0.2%