map-your-heroine
Web application survey of responses to fictional characters
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.6%) to scientific vocabulary
Keywords
Repository
Web application survey of responses to fictional characters
Basic Info
- Host: GitHub
- Owner: UUDigitalHumanitieslab
- License: bsd-3-clause
- Language: TypeScript
- Default Branch: develop
- Homepage: https://mapyourhero.com/
- Size: 660 KB
Statistics
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 7
- Releases: 2
Topics
Metadata Files
README.md
Map Your Hero(ine)
This repository contains a survey application developed for the the Map Your Hero(ine) project, led by Roselinde Supheert. More information can be found at the project website
The survey asks participants about fictional characters they admire. Participants fill in basic factual information about the character and the work they appeared in, and then answer questions about their personal impression of the character. Once an entry for a character has been created, multiple participants can answer the personal impression questions for that character.
The survey is intended to pay particular attention to how representations of characters change (or do not change) in adaptations. As such, the survey allows linking works as adaptations.
The documentation below is intended for developers. For more information about the project's goals and findings, visit the project website linked above.
Before you start
You need to install the following software:
- PostgreSQL >= 9.3, client, server and C libraries
- Python >= 3.4, <= 3.7
- virtualenv
- WSGI-compatible webserver (deployment only)
- Visual C++ for Python (Windows only)
- Node.js >= 8
- Yarn
- WebDriver for at least one browser (only for functional testing)
How it works
This project integrates three isolated subprojects, each inside its own subdirectory with its own code, package dependencies and tests:
- backend: the server side web application based on Django and DRF
- frontend: the client side web application based on Angular
- functional-tests: the functional test suite based on Selenium and pytest
Each subproject is configurable from the outside. Integration is achieved using "magic configuration" which is contained inside the root directory together with this README. In this way, the subprojects can stay truly isolated from each other.
If you are reading this README, you'll likely be working with the integrated project as a whole rather than with one of the subprojects in isolation. In this case, this README should be your primary source of information on how to develop or deploy the project. However, we recommend that you also read the "How it works" section in the README of each subproject.
Development
Quickstart
First time after cloning this project:
console
$ python bootstrap.py
Running the application in development mode (hit ctrl-C to stop):
console
$ yarn start
This will run the backend and frontend applications, as well as their unittests, and watch all source files for changes. You can visit the frontend on http://localhost:8000/, the browsable backend API on http://localhost:8000/api/ and the backend admin on http://localhost:8000/admin/. On every change, unittests rerun, frontend code rebuilds and open browser tabs refresh automatically (livereload).
Recommended order of development
For each new feature, we suggested that you work through the steps listed below. This could be called a back-to-front or "bottom up" order. Of course, you may have reasons to choose otherwise. For example, if very precise specifications are provided, you could move step 8 to the front for a more test-driven approach.
Steps 1–5 also include updating the unittests. Only functions should be tested, especially critical and nontrivial ones.
- Backend model changes including migrations.
- Backend serializer changes and backend admin changes.
- Backend API endpoint changes.
- Frontend model changes.
- Other frontend unit changes (templates, views, routers, FSMs).
- Frontend integration (globals, event bindings).
- Run functional tests, repair broken functionality and broken tests.
- Add functional tests for the new feature.
- Update technical documentation.
For release branches, we suggest the following checklist.
- Bump the version number in the
package.jsonnext to this README. - Run the functional tests in production mode, fix bugs if necessary.
- Try using the application in production mode, look for problems that may have escaped the tests.
- Add regression tests (unit or functional) that detect problems from step 3.
- Work on the code until new regression tests from step 4 pass.
- Optionally, repeat steps 2–5 with the application running in a real deployment setup (see Deployment).
Commands for common tasks
The package.json next to this README defines several shortcut commands to help streamline development. In total, there are over 30 commands. Most may be regarded as implementation details of other commands, although each command could be used directly. Below, we discuss the commands that are most likely to be useful to you. For full details, consult the package.json.
Install the pinned versions of all package dependencies in all subprojects:
console
$ yarn
Run backend and frontend in production mode:
console
$ yarn start-p
Run the functional test suite:
console
$ yarn test-func [FUNCTIONAL TEST OPTIONS]
The functional test suite by default assumes that you have the application running locally in production mode (i.e., on port 4200). See Configuring the browsers and Configuring the base address in functional-tests/README for options.
Run all tests (mostly useful for continuous integration):
console
$ yarn test [FUNCTIONAL TEST OPTIONS]
Run an arbitrary command from within the root of a subproject:
console
$ yarn back [ARBITRARY BACKEND COMMAND HERE]
$ yarn front [ARBITRARY FRONTEND COMMAND HERE]
$ yarn func [ARBITRARY FUNCTIONAL TESTS COMMAND HERE]
For example,
console
$ yarn back less README.md
is equivalent to
console
$ cd backend
$ less README.md
$ cd ..
Run python manage.py within the backend directory:
console
$ yarn django [SUBCOMMAND] [OPTIONS]
yarn django is a shorthand for yarn back python manage.py. This command is useful for managing database migrations, among other things.
Manage the frontend package dependencies:
console
$ yarn fyarn (add|remove|upgrade|...) (PACKAGE ...) [OPTIONS]
Notes on Python package dependencies
Both the backend and the functional test suite are Python-based and package versions are pinned using pip-tools in both subprojects. For ease of development, you most likely want to use the same virtualenv for both and this is also what the bootstrap.py assumes.
This comes with a small catch: the subprojects each have their own separate requirements.txt. If you run pip-sync in one subproject, the dependencies of the other will be uninstalled. In order to avoid this, you run pip install -r requirements.txt instead. The yarn command does this correctly by default.
Another thing to be aware of, is that pip-compile takes the old contents of your requirements.txt into account when building the new version based on your requirements.in. You can use the following trick to keep the requirements in both projects aligned so the versions of common packages don't conflict:
```console $ yarn back pip-compile
append contents of backend/requirements.txt to functional-tests/requirements.txt
$ yarn func pip-compile ```
Development mode vs production mode
The purpose of development mode is to facilitate live development, as the name implies. The purpose of production mode is to simulate deployment conditions as closely as possible, in order to check whether everything still works under such conditions. A complete overview of the differences is given below.
dimension | Development mode | Production mode
-----------|--------------------|-----------------
command | yarn start | yarn start-p
base address | http://localhost:8000 | http://localhost:4200
backend server (Django) | in charge of everything | serves backend only
frontend server (angular-cli) | serves | watch and build
static files | served directly by Django's staticfiles app | collected by Django, served by gulp-connect
backend DEBUG setting | True | False
backend ALLOWED_HOSTS | - | restricted to localhost
frontend sourcemaps | yes | no frontend optimization | no | yes
Deployment
Both the backend and frontend applications have a section dedicated to deployment in their own READMEs. You should read these sections entirely before proceeding. All instructions in these sections still apply, though it is good to know that you can use the following shorthand commands from the integrated project root:
```console
collect static files of both backend and frontend, with overridden settings
$ yarn django collectstatic --settings SETTINGS --pythonpath path/to/SETTINGS.py ```
You should build the frontend before collecting all static files.
Owner
- Name: UU Digital Humanities Lab
- Login: UUDigitalHumanitieslab
- Kind: organization
- Email: digitalhumanities@uu.nl
- Location: Utrecht
- Website: https://cdh.uu.nl/rsl/
- Repositories: 102
- Profile: https://github.com/UUDigitalHumanitieslab
Research Software Lab · Centre for Digital Humanities · Utrecht University
Citation (CITATION.cff)
cff-version: 1.2.0
title: Map your Hero(ine)
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Roselinde G. J. L.
family-names: Supheert
email: r.g.j.l.supheert@uu.nl
affiliation: Utrecht University
orcid: 'https://orcid.org/0000-0001-9663-1023'
- name: 'Research Software Lab, Centre for Digital Humanities, Utrecht University'
website: 'https://cdh.uu.nl/centre-for-digital-humanities/research-software-lab/'
email: cdh@uu.nl
city: Utrecht
country: NL
identifiers:
- type: doi
value: 10.5281/zenodo.8123693
references:
- authors:
- given-names: Roselinde G. J. L.
family-names: Supheert
email: r.g.j.l.supheert@uu.nl
affiliation: Utrecht University
title: Map your Hero(ine)
type: software
url: https://mapyourhero.com/
repository-code: 'https://github.com/UUDigitalHumanitieslab/Map-your-Heroine'
url: 'https://map-your-hero.hum.uu.nl/'
abstract: >-
This project aims to map the representation of heroes and
heroines in fiction and their adaptations. Literary
characters, or adaptations, provide important role models
for readers or viewers, shaping their view of society and
themselves, and by extension shaping their lives. How,
then, are these crucial characters represented? And how
are they adjusted across cultures and media? Map Your
Hero(ine) aims to create a website and database that makes
these representations and their changes, or lack thereof,
insightful and invites students and general readers to
contribute by mapping their favourite heroes or heroines.
license: BSD-3-Clause
version: '1.1.0'
GitHub Events
Total
- Issues event: 3
- Delete event: 1
- Issue comment event: 3
- Push event: 7
- Pull request review event: 1
- Pull request event: 2
- Create event: 2
Last Year
- Issues event: 3
- Delete event: 1
- Issue comment event: 3
- Push event: 7
- Pull request review event: 1
- Pull request event: 2
- Create event: 2
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 9
- Total pull requests: 4
- Average time to close issues: about 11 hours
- Average time to close pull requests: 11 days
- Total issue authors: 2
- Total pull request authors: 2
- Average comments per issue: 0.33
- Average comments per pull request: 0.25
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 2
- Pull requests: 1
- Average time to close issues: about 11 hours
- Average time to close pull requests: 20 days
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 1.5
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- lukavdplas (4)
- JeltevanBoheemen (2)
Pull Request Authors
- lukavdplas (3)
- JeltevanBoheemen (2)