lean-mind / huella-positiva

6 stars 2 forks source link

Huella Positiva


📜 Table of contents

🐳 Installation

Prerequisites

Before you start, make sure you have installed and configured:

⚠️ Docker Desktop has given us some trouble, changing the id of the internal docker container user (on Linux). Installing and using docker just from the CLI works just fine instead.

[Only Windows] If you have Windows OS, you must be follow these steps:

1.Follow this guide for install Windows Subsystem Linux (WSL)

  1. Install Windows Terminal from Microsoft Store, for a better experience and integration of WSL.
  2. Open Windows Terminal and choose the Linux distribution that you downloaded in step one.
  3. Proceed to install Huella Positiva like you will have Linux OS First time install

    Considered read this common issue, because it's very probably that you get it.

First time install

⬆Go top

Run the project locally

running application locally gif

⚠️ Before running the backend locally, whe need up the databases ⚠️

⬆Go top

🐛 Common issues

standard_init_linux.go:211: exec (very probably on Windows OS)

If you get "standard_init_linux.go:211: exec" error, you can fix it by executing these commands:

for i in $(find . -name "*.sh"); do dos2unix $i; done

for i in $(find . -name "docker-*"); do dos2unix $i; done

for i in $(find . -name "Dockerfile"); do dos2unix $i; done

⬆Go top