README.md 3.96 KB
Newer Older
mntmn's avatar
mntmn committed
1
2
3
4
# Spacedeck Open

This is the free and open source version of Spacedeck, a web based, real time, collaborative whiteboard application with rich media support. Spacedeck was developed in 6 major releases during Autumn 2011 until the end of 2016 and was originally a commercial SaaS. The developers were Lukas F. Hartmann (mntmn) and Martin Güther (magegu). All icons and large parts of the CSS were designed by Thomas Helbig (dergraph).

5
As we plan to retire the subscription based service at spacedeck.com in May 2018, we decided to open-source Spacedeck to allow educational and other organizations who currently rely on Spacedeck to migrate to a self-hosted or local version.
mntmn's avatar
mntmn committed
6

mntmn's avatar
mntmn committed
7
8
9
**Windows users:** Try the one-click release at https://github.com/spacedeck/spacedeck-open/releases/tag/v0.9

Desktop releases for Linux and Mac will be published here soon. In the meantime, you have to install Node.JS to run Spacedeck.
Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
10

mntmn's avatar
mntmn committed
11
12
13
14
We appreciate filed issues, pull requests and general discussion.

# Features

15
- Create virtual whiteboards called *Spaces* with virtually unlimited size
mntmn's avatar
mntmn committed
16
17
18
19
20
21
22
23
- Drag & drop images, videos and audio from your computer or the web
- Write and format text with full control over fonts, colors and style
- Draw, annotate and highlight with included graphical shapes
- Turn your Space into a zooming presentation
- Collaborate and chat in realtime with teammates, students or friends
- Share Spaces on the web or via email
- Export your work as printable PDF or ZIP

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
24
25
26
27
# Data Import from Spacedeck.com

Spacedeck Open has a data import feature that you can use to migrate your ZIP export from Spacedeck.com.

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
28
29
30
31
32
1. Just copy your downloaded ZIP file into the spacedeck root folder. Don't extract it.
2. Start your local Spacedeck.
3. Navigate to *Account / Profile* (person icon in the top right corner).
4. Click the *Import* button next to the ZIP file name. It is on the bottom of the page.
5. Wait until console output has finished and you're done.
Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
33

mntmn's avatar
mntmn committed
34
35
# Requirements, Installation

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
36
Spacedeck requires:
mntmn's avatar
mntmn committed
37

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
38
- Node.js 9.x: Web Server / API. Download: https://nodejs.org
mntmn's avatar
mntmn committed
39

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
40
To run Spacedeck, you only need Node.JS 9.x.
mntmn's avatar
mntmn committed
41

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
42
To install all node dependencies, run (do this once):
mntmn's avatar
mntmn committed
43
44
45

    npm install

46
47
# Configuration

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
48
See [config/default.json](config/default.json)
49

50
# Run (web server)
mntmn's avatar
mntmn committed
51

52
53
54
55
56
57
58
    node spacedeck.js

Then open http://localhost:9666 in a web browser.

# Run (desktop app with integrated web server)

    electron .
mntmn's avatar
mntmn committed
59

Lukas F. Hartmann's avatar
Lukas F. Hartmann committed
60
61
62
63
64
65
66
67
68
69
70
71
72
# Optional Dependencies

For advanced media conversion:

- ffmpeg and ffprobe for video/audio conversion. Download: https://www.ffmpeg.org/download.html
- audiowaveform for audio waveform rendering. Download: https://github.com/bbcrd/audiowaveform
- ghostscript for PDF import. Download: https://www.ghostscript.com/download/gsdnld.html

# Data Storage

By default, media files are uploaded to the ```storage``` folder.
The database is stored in ```database.sqlite``` by default.

mntmn's avatar
mntmn committed
73
74
75
76
77
78
# Hacking

To rebuild the frontend CSS styles:

    gulp styles

mntmn's avatar
mntmn committed
79
80
# License

81
82
83
The Spacedeck logo and brand assets are registered trademarks of Spacedeck GmbH. All rights reserved.

Spacedeck Open source code is released under the GNU Affero General Public License Version 3 (GNU AGPLv3).
mntmn's avatar
mntmn committed
84
85

    Spacedeck Open - Web-based Collaborative Whiteboard For Rich Media
86
87
    Copyright (C) 2011-2018 Lukas F. Hartmann, Martin Güther
    Icons and original CSS design copyright by Thomas Helbig
mntmn's avatar
mntmn committed
88
89
90
91
92
93
94
95
96
97
98
99
100
    
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.