A collaborative note taking, wiki and documentation platform that scales. Built with Django and React.
Find a file
Anthony LC 7b04f664cd (backend) fix flaky test on tmp file
It seems to have a race condition, sometimes the
tmp file is not deleted before the test assertion.
We let the test sleep for 0.5 second before
the assertion.
2024-09-24 09:45:09 +02:00
.github (CI) add ngnix for the frontend 2024-09-10 15:51:28 +02:00
bin 🔧(project) replace webrtc by yProvider 2024-09-04 21:10:24 +02:00
crowdin 👷(project) rename i18n-back to i18n-crowdin 2024-04-03 13:07:05 +02:00
docker 🧑‍💻(ngnix) add conf ngnix to proxy media url 2024-08-29 18:31:26 +02:00
docs 🔧(project) replace webrtc by yProvider 2024-09-04 21:10:24 +02:00
env.d/development (documents) add content field as an S3 object 2024-05-13 12:12:52 +02:00
gitlint (project) first proof of concept printing pdf from markdown 2024-01-09 15:30:36 +01:00
secrets@2643697e5f 🔥(helm) configure staging to use scaleway email 2024-08-23 15:37:01 +02:00
src (backend) fix flaky test on tmp file 2024-09-24 09:45:09 +02:00
.dockerignore 🚚(docker) move frontend docker config 2024-04-19 12:41:06 +02:00
.gitignore 🔥(project) remove tsclient 2024-08-14 11:45:21 +02:00
.gitlint (project) first proof of concept printing pdf from markdown 2024-01-09 15:30:36 +01:00
.gitmodules 🐛(CI) improve submodule 2024-06-11 10:40:39 +02:00
.sops.yaml 🔐(secret) add spaccoud age key 2024-08-09 13:12:13 +02:00
CHANGELOG.md 🛂(backend) oidc userinfo endpoint json format 2024-09-23 10:57:57 +02:00
docker-compose.yml 🔥(compose) remove docker compose version 2024-09-11 22:31:30 +02:00
Dockerfile 🐛(docker) add emoji font 2024-09-03 17:37:56 +02:00
LICENSE (project) first proof of concept printing pdf from markdown 2024-01-09 15:30:36 +01:00
Makefile 🧑‍💻(makefile) add build frontend dev 2024-09-12 08:06:17 +02:00
README.md 🚀(docker) dockerize frontend dev 2024-05-30 15:42:34 +02:00
renovate.json ⬆️(i18n) i18next-parser to 9.0.2 2024-09-05 09:30:56 +02:00
UPGRADE.md (project) first proof of concept printing pdf from markdown 2024-01-09 15:30:36 +01: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).