Skip to content

HBPMedical/mip.ebrains.eu

This branch is 1 commit ahead of, 6 commits behind master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a7ef068 · Jan 11, 2023
Jan 11, 2023
Aug 25, 2022
May 19, 2020
May 19, 2020
May 17, 2020
May 5, 2020
May 19, 2020
May 4, 2020
May 4, 2020
Feb 23, 2022
Feb 23, 2022
Nov 9, 2020
May 28, 2020
May 19, 2020

Repository files navigation

Medical Informatics Platform

mip.ebrains.eu

This is the code repository for the mip.ebrains.eu website.

The website is based on

Installation

You need docker and docker-compose in order to run this stack.

Deploy

  • clone this repository.
  • create a .env.prod file based on .env.dev variables
  • ./deploy.sh

Troubleshooting

DNS queries inside docker fail with Error: getaddrinfo EAI_AGAIN Simple fix is to create the file /etc/docker/daemon.json and insert:

{
  "dns": ["10.0.0.2", "8.8.8.8"]
}

Develop

You need Node.js and yarn in order to run this stack.

  • clone this repo
  • ./develop.sh will launch the Strapi CMS and Postgres
  • in another terminal, cd frontend
  • yarn serve will launch the frontend
  • You will need to yarn install at first launch.