{"id":21592100,"url":"https://github.com/freeats/freeats","last_synced_at":"2025-07-03T22:07:06.874Z","repository":{"id":260529675,"uuid":"881551997","full_name":"freeats/freeats","owner":"freeats","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-09T11:23:25.000Z","size":24748,"stargazers_count":30,"open_issues_count":52,"forks_count":7,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-09T12:32:00.108Z","etag":null,"topics":["ats","open-source","rails","recruitment","ruby","ruby-on-rails","self-hosted","tabler","viewcomponents"],"latest_commit_sha":null,"homepage":"https://www.freeats.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/freeats.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2024-10-31T19:47:52.000Z","updated_at":"2025-06-09T11:23:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"8d87de38-5847-4a58-84f5-893407f8e1c9","html_url":"https://github.com/freeats/freeats","commit_stats":null,"previous_names":["freeats/freeats"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/freeats/freeats","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freeats%2Ffreeats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freeats%2Ffreeats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freeats%2Ffreeats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freeats%2Ffreeats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freeats","download_url":"https://codeload.github.com/freeats/freeats/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freeats%2Ffreeats/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263410777,"owners_count":23462299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ats","open-source","rails","recruitment","ruby","ruby-on-rails","self-hosted","tabler","viewcomponents"],"created_at":"2024-11-24T17:00:23.504Z","updated_at":"2025-07-03T22:07:06.855Z","avatar_url":"https://github.com/freeats.png","language":"Ruby","funding_links":[],"categories":["Business"],"sub_categories":["Applicant Tracking System"],"readme":"# Toughbyte FreeATS\n\n## Quick start\n\n1. Install [Docker](https://docs.docker.com/engine/install/) and [Docker Compose](https://docs.docker.com/compose/install/)\n   and make sure the Docker server is running by using the command\n\n   ```shell\n   docker info\n   ```\n\n2. Download the repository, you can do this via git or by downloading the zip file.\n\n3. Prepare values for sensitive variables:\n\n   `SECRET_KEY_BASE` - a secret key for the application, example: \"462d54c7b15dcc1924e797d0b28e6d\"\\\n   `POSTGRES_USER` - a username for the PostgreSQL database, example: \"postgres\"\\\n   `POSTGRES_PASSWORD` - a password for the PostgreSQL database, example: \"password\"\n\n4. Navigate to the project directory and start the application:\n\n   ```shell\n   SECRET_KEY_BASE=\u003cvalue\u003e \\\n   POSTGRES_USER=\u003cvalue\u003e \\\n   POSTGRES_PASSWORD=\u003cvalue\u003e \\\n   docker compose up -d\n   ```\n\n5. Open `http://\u003cyour_server_ip\u003e:3000/register` and create an account.\n\n6. To stop the running containers, use the following command:\n\n   ```shell\n   docker compose stop\n   ```\n\n7. To remove the created images, containers and volumes, use the following commands:\n\n   ```shell\n   docker compose down --volumes\n   docker rmi freeats-web\n   docker rmi postgres:15\n   ```\n\n## Run the application with your own database\n\nThis app currently supports only PostgreSQL.\n\n1. Prepare values for sensitive variables:\n\n   `SECRET_KEY_BASE` - a secret key for the application, example: \"462d54c7b15dcc1924e797d0b28e6d\"\\\n   `DATABASE_URL` - a URL to the PostgreSQL database, example: \"postgres://postgres:password@localhost:5432/freeats\"\n\n2. Navigate to the project directory and start the application:\n\n   ```shell\n   DATABASE_URL=\u003cdatabase_url\u003e \\\n   SECRET_KEY_BASE=\u003cvalue\u003e \\\n   docker compose -f app_with_external_db.yml up -d\n   ```\n\n3. To stop the running containers, use the following command:\n\n   ```shell\n   docker compose -f app_with_external_db.yml stop\n   ```\n\n4. To remove the created images, containers and volumes, use the following commands:\n\n   ```shell\n   docker compose -f app_with_external_db.yml down --volumes\n   docker rmi freeats-web\n   ```\n\n## Troubleshooting\n\n- If you have an unstable internet connection, there may be errors.\n  If this happens, restart the command that failed.\n\n- If you get the error `address already in use`, it is most likely\n  because port 5432 is being used by local PostgreSQL service.\n  It can be checked using command:\n\n  ```shell\n  sudo lsof -i :5432\n  ```\n\n  Local PostgreSQL service then can be stopped:\n\n  ```shell\n  sudo systemctl stop postgresql\n  ```\n\n  More details on [stackoverflow](https://stackoverflow.com/questions/38249434/docker-postgres-failed-to-bind-tcp-0-0-0-05432-address-already-in-use).\n\n- If files with root permissions were created during the process,\n  you can change them using the command\n\n  ```shell\n  chmod -R 777 \u003cfile or directory name\u003e\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeats%2Ffreeats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreeats%2Ffreeats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeats%2Ffreeats/lists"}