{"id":20393057,"url":"https://github.com/aichbauer/test-app","last_synced_at":"2026-05-09T08:03:50.262Z","repository":{"id":82477784,"uuid":"88609269","full_name":"aichbauer/test-app","owner":"aichbauer","description":null,"archived":false,"fork":false,"pushed_at":"2017-04-23T16:47:44.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-04T20:40:53.660Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aichbauer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-18T09:50:01.000Z","updated_at":"2017-04-18T10:27:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"5b9727c3-4053-4d37-8391-5d01cc4ea0ca","html_url":"https://github.com/aichbauer/test-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aichbauer/test-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Ftest-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Ftest-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Ftest-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Ftest-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aichbauer","download_url":"https://codeload.github.com/aichbauer/test-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Ftest-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32811662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T03:47:11.483Z","updated_at":"2026-05-09T08:03:50.224Z","avatar_url":"https://github.com/aichbauer.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Concourse CI\n\n## Setup Concourse\n\n\u003eNote: Pre-Requirements Docker and Virtualbox\n\n### Install Docker and Virtualbox\nDownload [docker](https://docker.com), and follow the installation instructions.\nDownload [virtualbox](https://www.virtualbox.org/), and follow the installation instructions.\n\n### Create a docker machine\n\n```sh\n$ docker-machine create --driver=virtualbox concourse\n```\n\n#### set up environment variables\n\n```sh\n$ docker-machine env concourse\n$ eval $(docker-machine env concourse) # connect shell\n$ docker-machine stop concourse\n$ docker-machine start concourse\n```\n\n### Docker compose for concourse\n\ncreate a `docker-compose.yml`\n\n```yml\nconcourse-db:\n  image: postgres:9.5\n  environment:\n    POSTGRES_DB: concourse\n    POSTGRES_USER: concourse\n    POSTGRES_PASSWORD: changeme\n    PGDATA: /database\n\nconcourse-web:\n  image: concourse/concourse\n  links: [concourse-db]\n  command: web\n  ports: [\"8080:8080\"]\n  volumes: [\"./keys/web:/concourse-keys\"]\n  environment:\n    CONCOURSE_BASIC_AUTH_USERNAME: concourse\n    CONCOURSE_BASIC_AUTH_PASSWORD: changeme\n    CONCOURSE_EXTERNAL_URL: \"${CONCOURSE_EXTERNAL_URL}\"\n    CONCOURSE_POSTGRES_DATA_SOURCE: |-\n      postgres://concourse:changeme@concourse-db:5432/concourse?sslmode=disable\n\nconcourse-worker:\n  image: concourse/concourse\n  privileged: true\n  links: [concourse-web]\n  command: worker\n  volumes: [\"./keys/worker:/concourse-keys\"]\n  environment:\n    CONCOURSE_TSA_HOST: concourse-web\n```\n\ncreate keys\n```sh\n$ mkdir -p keys/web keys/worker\n\n$ ssh-keygen -t rsa -f ./keys/web/tsa_host_key -N ''\n$ ssh-keygen -t rsa -f ./keys/web/session_signing_key -N ''\n\n$ ssh-keygen -t rsa -f ./keys/worker/worker_key -N ''\n\n$ cp ./keys/worker/worker_key.pub ./keys/web/authorized_worker_keys\n$ cp ./keys/web/tsa_host_key.pub ./keys/worker\n```\n\nget ip of docker-machine and set external url to ip of dockermachine\n```sh\n$ docker-machine ip default\n$ export CONCOURSE_EXTERNAL_URL=http://192.168.99.100:8080\n```\n\n### docker compose\n```sh\ndocker-compose up\n```\n\n### build pipeline\ntarget and login to concourse (docker-compose.yml)\nstart pipeline\n```sh\n$ fly -t concourse-ci login -c \u003cyour concourse URL\u003e\n$ fly set-pipeline -t concourse-ci -p test-app -c pipeline.yml --load-vars-from creds.yml\n```\n\n### migrate db for heroku\ndownload heroku-cli\n```sh\nheroku run --app \u003cyour app name\u003e rake db:migrate\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faichbauer%2Ftest-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faichbauer%2Ftest-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faichbauer%2Ftest-app/lists"}