No description
Find a file
Kyrylo Gliebov 66998cafa8 Add Search
2019-03-07 15:18:02 +01:00
po Properly initialize state of Application 2018-08-29 00:40:16 +02:00
src Add Search 2019-03-07 15:18:02 +01:00
test Update tests 2018-10-31 17:54:29 +01:00
.babelrc Move to babel 7 2018-08-29 00:40:49 +02:00
.eslintignore Add more sample content to subscriptions page 2017-07-26 10:33:14 +02:00
.eslintrc.json Enable a lot of eslint options and plugins 2018-08-28 22:57:52 +02:00
.gitignore Add git tag derived version to tarball and spec 2018-06-22 20:07:29 +02:00
.travis.yml Add .travis.yml (#15) 2017-10-19 17:54:52 +02:00
cockpit-session-recording.spec.in Add cockpit dependency 2019-03-07 15:18:02 +01:00
cockpit-starter-kit.spec.in Add app-data-validate for metainfo.xml 2019-01-15 18:22:55 +01:00
cockpituous-release cockpituous-release: Show how to do Fedora uploads 2018-08-28 22:51:10 +02:00
LICENSE Initial commit with a LICENSE and README 2017-06-14 18:19:15 +02:00
Makefile Add app-data-validate for metainfo.xml 2019-01-15 18:22:55 +01:00
org.cockpit-project.session-recording.metainfo.xml Add xml header to metainfo.xml 2019-01-15 18:22:55 +01:00
package.json Switch to Slider instead of ProgressBar 2018-10-10 17:59:55 +02:00
README.md Update README.md 2019-02-18 14:44:41 +01:00
Vagrantfile vagrant: Use rsync backend for file sharing 2018-06-25 14:28:42 +02:00
webpack.config.js Rebase and migration to full React instead of react-lite 2018-10-10 17:59:55 +02:00

Cockpit Session Recording

Module for Cockpit which provides session recording configuration and playback. It requires tlog to record terminal sessions. SSSD is required to manage which users / groups are recorded. Systemd Journal is used to store recordings. Ansible role for session-recording is here.

Demos & Talks:

GitHub Organization:

Getting and building the source

Make sure you have npm available (usually from your distribution package). These commands check out the source and build it into the dist/ directory:

git clone https://github.com/Scribery/cockpit-session-recording.git
cd cockpit-session-recording
make

Installing

make install compiles and installs the package in /usr/share/cockpit/. The convenience targets srpm and rpm build the source and binary rpms, respectively. Both of these make use of the dist-gzip target, which is used to generate the distribution tarball. In production mode, source files are automatically minified and compressed. Set NODE_ENV=production if you want to duplicate this behavior.

For development, you usually want to run your module straight out of the git tree. To do that, link that to the location were cockpit-bridge looks for packages:

mkdir -p ~/.local/share/cockpit
ln -s `pwd`/dist ~/.local/share/cockpit/session-recording

After changing the code and running make again, reload the Cockpit page in your browser.

Running eslint

Cockpit Starter Kit uses ESLint to automatically check JavaScript code style in .jsx and .es6 files.

The linter is executed within every build as a webpack preloader.

For developer convenience, the ESLint can be started explicitly by:

$ npm run eslint

Violations of some rules can be fixed automatically by:

$ npm run eslint:fix

Rules configuration can be found in the .eslintrc.json file.

Credits

Cockpit-session-recording is based on starter-kit.