Git Product home page Git Product logo

ejerciciokubernates's Introduction

Abraxas Tasks

About

Aplicación de productividad para la gestión de tareas. Demo

Ambiente de desarrollo local

Requerimientos

Pasos

  • Crear y acceder a la maquina virtual
cd vagrant/
vagrant up
vagrant ssh

A partir de aquí se asume que todos los comandos se ejecutan dentro de la maquina virtual creada con Vagrant.

  • Levantar servicios de desarrollo (solo mongo y mongo express)
cd /home/app/services/docker-compose/
sudo ./start-only-develop-services.sh
  • Crear ambiente de desarrollo para abraxas-tasks-api
pyenv install 3.8-dev
cd /home/app/services/abraxas-tasks-api/
pyenv virtualenv 3.8-dev abraxas-tasks-api
pyenv activate abraxas-tasks-api
pip install -r requirements.txt
cd app
export MONGO_URI="mongodb://root:[email protected]:27017/tasks?authSource=admin"; export MONGO_DB="abraxa-tasks"; python -m main
cd /home/app/services/abraxas-tasks-client/
nvm install stable
nvm use stable
npm install
export REACT_APP_GRAPHQL_URI="http://192.168.50.4:5000/graphql"; npm start
npm run storybook

Correr analisis de Sonar

  • Analizar abraxas-tasks-api
cd /home/app/services/abraxas-tasks-api/
sonar-scanner \
  -Dsonar.projectKey=abraxas-tasks-api \
  -Dsonar.sources=app \
  -Dsonar.host.url=${SONAR_HOST_URL} \
  -Dsonar.login=${SONAR_LOGIN}\
  -Dsonar.javascript.file.suffixes=.py \
  -Dsonar.language=py \
  -Dsonar.python.pylint=/usr/local/bin/pylint 
  • Analizar abraxas-tasks-client
cd /home/app/services/abraxas-tasks-client/
sonar-scanner \
    -Dsonar.projectKey=abraxas-tasks-client \
    -Dsonar.sources=. -Dsonar.host.url=${SONAR_HOST_URL} \
    -Dsonar.login=${SONAR_LOGIN} \
    -Dsonar.sources=src \
    -Dsonar.javascript.file.suffixes=.js,.jsx

Desplegar en ambiente de Docker local

cd /home/app/services/docker-compose/
sudo ./start-as-dev.sh 

ejerciciokubernates's People

Contributors

oarcia avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.