Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 831 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 831 Bytes

docART

docART is a Github client developed during ICDemocracia17 @ Medialab Prado.

Installation instructions

PRODUCTION ENVIRONMENT:

  • Run docker build . -t docart/app in the main folder

  • Execute docker run -d -p 5000:5000 docart/app

You can also use Docker Hub image using: docker run -d -p 5000:5000 dalareo/docart:latest

DEVELOPMENT ENVIRONMENT:

  • Run docker build . -f Dockerfile-dev -t docart/app:dev in the main folder

  • Create a personal access token for GitHub with repo scope

  • Execute docker run -d -p 3000:3000 -e REACT_APP_GITHUB_TOKEN=[personal access token] -v [/your/current/path]/src:/usr/src/app/src -v [/your/current/path]/public:/usr/src/app/public docart/app:dev