A web platform for creating, using and analysing pre-defined concept cards, e.g. ideation cards. Developed at the University of Nottingham and supported by UKRI-funded Horizon projects [Grant Numbers EP/T022493/1 and EP/V00784X/1].
Copyright © The University of Nottingham, 2021-2024. MIT License
See the wiki for user documentation, and examples.
Can be used with
- miro - working
- simple built-in web app view of cards
(A prototype unity client exists but is not integrated or supported: cardographer virtual tabletop)
There is a public instance currently (December 2024) hosted at https://cardographer.cs.nott.ac.uk/platform for interested researchers, but we would encourage you to set up your own instance for long-term use.
Note, requires docker and docker-compose.
(e.g. vagrant up
- see Vagrantfile)
See Dockerfile
or src/docker/dev/Dockerfile
.
Copy server.env
to server.env.local
(or whatever location you will use for environment vars).
- Set
SMTP_...
(email) sending settings (unless you are going to check the logs for password reset URLs). - Set
ADMIN_USERS
to email address(es) of initial/default admin users. - Set
REGISTER_CODE
if you want new users to have to provide this code in order to register (rather than just validate their email).
Dev build/run (with default docker-compose.yml):
sudo docker-compose up -d --build
Open http://localhost:3000.
Configuration is loaded from server.env
as per docker-compose.yaml
Note, the server needs to be able to send (forward) email for password recovery.
See SMTP_... config in server.env
If you start it from the default docker-compose.yml then mongo-express is accessible on http://localhost:8081; authenticated with username & password 'mongo'.
See information on user accounts/types below.
In your chosen miro team, open your profile settings, select "your apps" tab,
and "+Create new app" and give it a name (e.g. "cardographer local dev").
Give it permission board:read
and board:write
and set the "App URL" to http://localhost:3000/miro.html.
Then "Install app and get OAuth token", or copy and paste the Share app "Installation URL", and agree.
Note, this probably won't work from an Incognito browser because of cookies being blocked (often).
It is also not possible to add cards to the board from the locally hosted plugin (because the public miro server cannot access the local URLs to access the card images). As a workaround you can copy the image onto the board and manually change the miro image name to the card ID.
Note, the pre-configured emails (in ADMIN_USERS
) will always automatically be assigned admin status.
An admin can set/clear the admin status of other users.
But note that being admin does to automatically give you "deck builder" and/or "publisher" status (see below). But as an admin you can change these settings for yourself:
- log in & go to the "Users" tab;
- select a user (or your highlighted) entry;
- enable deck builder/publisher/admin options as appropriate and Save.
Note, you can also disable users, i.e. prevent them from logging in.
By default users cannot create decks, only sessions & analyses. An admin needs to enable "deck builder" for a user before they can create (new) decks.
By default users cannot make decks, sessions or analyses public (i.e. visible to other users). An admin needs to enable "publisher" for the user before they can make things public.
Also note that all users - including Admins - have quotas for numbers of decks, sessions, etc. Admin users can increase quotas for any user in the corresponding user's settings page (from the "Users" tab).