Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/medialab/fonio
a collaborative scholarly text editor allowing to build static websites
https://github.com/medialab/fonio
Last synced: 5 days ago
JSON representation
a collaborative scholarly text editor allowing to build static websites
- Host: GitHub
- URL: https://github.com/medialab/fonio
- Owner: medialab
- License: agpl-3.0
- Created: 2016-11-23T13:25:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T17:32:43.000Z (over 3 years ago)
- Last Synced: 2024-08-01T12:31:14.337Z (3 months ago)
- Language: JavaScript
- Homepage: https://fonio.medialab.sciences-po.fr/demo
- Size: 28.6 MB
- Stars: 67
- Watchers: 10
- Forks: 6
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - medialab/fonio - a collaborative scholarly text editor allowing to build static websites (others)
README
# Fonio - *a collaborative scholarly text editor allowing to build static websites*
Fonio is a a collaborative scholarly text editor allowing to build high quality static websites, using the architecture of websites to structure arguments, and the possibility to feature an extensible array of resources such as bibliographic references, images, tables, videos, and interactive elements.
Fonio puts an emphasis on documentation, allowing writers to describe all the resources gathered during their inquiry in a rich and homogeneous way (date, source, author, ...). It also allows them to build an augmented glossary in order to define key terms and browse them in an interactive way.
Besides, the application is aimed at allowing to work extensively on the information design of a dissertation: one can choose a way to organize the reading experience of their readers, and customize the visual identity of their work in a meaningful way.
Fonio is collaborative and allows several writers to work simultaneously on contents, design and documentation. According to this collaborative state of mind, works in progress are readable by the whole classroom, but their edition is restricted to each team.
Each session corresponds to a specific course and exists during a limited period of time. All works are saved and privately archived after the semester is finished, but the application also allows writers to download their work at anytime to backup it or to publish it online in a clean and easy way.
Fonio is part of a suite of digital storytelling tools tailored for the [FORCCAST](http://controverses.org/) pedagogical program and [médialab sciences po](http://www.medialab.sciences-po.fr/) scientific activities.
It works with the [quinoa-server](https://github.com/medialab/quinoa-server) application which provides a server to store stories and handles collaborative edition through websockets.
# Requirements
* [git](https://git-scm.com/)
* [node](https://nodejs.org/en/)# Installation
Nota bene: you have to install both fonio (the client/visual interface) and [quinoa-server](https://github.com/medialab/quinoa-server) (the server/data management application) to be able to run this application.
Prerequisites :
* install [node](https://nodejs.org/en/)
* install [git](https://git-scm.com/downloads)
* learn to use [macos terminal](https://macpaw.com/fr/how-to/use-terminal-on-mac), [windows command line](https://www.computerhope.com/issues/chusedos.htm) or [linux command line](https://tutorials.ubuntu.com/tutorial/command-line-for-beginners#0) depending on your operating systemTo install `quinoa-server`, open your terminal/command line tool and run the following commands in a directory of your choice :
```
git clone https://github.com/medialab/quinoa-server
cd quinoa-server
npm install
cp config/sample.json config/default.json
```Then edit the ``config/default.json`` file with your own settings.
Then, to install `fonio`, open your terminal/command line tool and run the following commands in a directory of your choice :
```
git clone https://github.com/medialab/fonio
cd fonio
npm install
cp config/sample.json config/default.json
```Then edit the ``config/default.json`` file with your own settings.
# Development
In both fonio and quinoa-server folders, run in two different terminal/command line tabs :
```
npm run dev
```Fonio application is then available locally at the following address: [localhost:3000](localhost:3000)
Fonio is compatible with the [Redux Devtools](https://github.com/gaearon/redux-devtools) browser extension for an optimal developer experience.
# Deployment
For matters of deploying fonio to an online/"production" version, Fonio is supposed to run in a [docker](https://www.docker.com/) infrastructure.
Please look at the [`docker-compose.yml`](https://github.com/medialab/quinoa-server/blob/master/docker-compose.yml) file present on [quinoa-server](https://github.com/medialab/quinoa-server) repository for that matter.
# Contributing
See the [contributing guide](https://github.com/medialab/fonio/blob/master/CONTRIBUTING.md) in order to give a hand on translations, report bugs, or propose pull requests.
# Other scripts
```
npm run build # builds the app to build dir
npm run lint # lints (auto-fix on) the js code
npm run comb # prettifies (s)css code
npm run test # launch tests for all .spec.js suffixed js scripts within src dir
npm run analyze # analyze webpack bundle# translation management
npm run translations:backfill # backfills untranslated keys with default language
npm run translations:discover # updates json translation files with missing translation keys, removes deprecated keys
npm run translations:export:to:po # exports the contents of /src/translations/*.json files to /translations/*.po files (format for professional translation software)
npm run translations:import:from:po # imports the contents of /src/translations/*.json files from /translations/*.po files (format for professional translation software)
npm run translations:update:po # fills po files with untranslated keys
npm run translations:update # backfills, discovers and updates po files
npm run translations:addlanguage # automated files manipulations for adding a locale
npm rnu translations:gitaddpo # adds to git the new translations files
```# Precomit hook
The project uses a precommit hook before each commit to ensure the code remains clean at all times. Check out the `package.json` to learn more about it.