This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Samuel Paccoud - DINUM 494638d306 (models/api) add link access reach and role
Link access was either public or private and was only allowing readers.

This commit makes link access more powerful:
- link reach can be private (users need to obtain specific access by
  document's administrators), restricted (any authenticated user) or
  public (anybody including anonymous users)
- link role can be reader or editor.

It is thus now possible to give editor access to an anonymous user or
any authenticated user.
2024-09-11 22:31:30 +02:00
2024-09-10 15:51:28 +02:00
2024-09-04 21:10:24 +02:00
2024-08-29 18:31:26 +02:00
2024-09-04 21:10:24 +02:00
2024-04-19 12:41:06 +02:00
2024-08-14 11:45:21 +02:00
2024-06-11 10:40:39 +02:00
2024-08-09 13:12:13 +02:00
2024-09-03 17:37:56 +02:00
2024-09-04 21:10:24 +02:00
2024-05-30 15:42:34 +02:00
2024-09-05 09:30:56 +02:00

Impress

Impress prints your markdown to pdf from predefined templates with user and role based access rights.

Impress is built on top of Django Rest Framework and Next.js.

Getting started

Prerequisite

Make sure you have a recent version of Docker and Docker Compose installed on your laptop:

$ docker -v
  Docker version 20.10.2, build 2291f61

$ docker compose -v
  docker compose version 1.27.4, build 40524192

⚠️ You may need to run the following commands with sudo but this can be avoided by assigning your user to the docker group.

Project bootstrap

The easiest way to start working on the project is to use GNU Make:

$ make bootstrap FLUSH_ARGS='--no-input'

Then you can access to the project in development mode by going to http://localhost:3000. You will be prompted to log in, the default credentials are:

username: impress
password: impress

This command builds the app container, installs dependencies, performs database migrations and compile translations. It's a good idea to use this command each time you are pulling code from the project repository to avoid dependency-releated or migration-releated issues.

Your Docker services should now be up and running 🎉

Note that if you need to run them afterwards, you can use the eponym Make rule:

$ make run-frontend-dev

Adding content

You can create a basic demo site by running:

$ make demo

Finally, you can check all available Make rules using:

$ make help

Django admin

You can access the Django admin site at http://localhost:8071/admin.

You first need to create a superuser account:

$ make superuser

Contributing

This project is intended to be community-driven, so please, do not hesitate to get in touch if you have any question related to our implementation or design decisions.

License

This work is released under the MIT License (see LICENSE).

Description
No description provided
Readme 26 MiB
Languages
Python 49.7%
TypeScript 41.5%
CSS 6.7%
JavaScript 0.6%
Makefile 0.5%
Other 0.9%