{"id":14955725,"url":"https://github.com/petrnikolas/flick","last_synced_at":"2025-06-23T14:33:10.627Z","repository":{"id":39676389,"uuid":"159938557","full_name":"PetrNikolas/flick","owner":"PetrNikolas","description":"Flick is a Rails development platform to generate, develop and deploy web applications and microservices. (Ruby, Ruby on Rails, Postgres, etc.)","archived":false,"fork":false,"pushed_at":"2023-01-19T16:45:39.000Z","size":117,"stargazers_count":9,"open_issues_count":11,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-05T04:06:47.467Z","etag":null,"topics":["docker","gateway","gateway-api","gateway-microservice","microservice","microservices","monorepo","monorepo-architecture","monorepo-boilerplate","monorepository","postgres","postgresql","postgresql-database","rails","rails-api","rails-application","ruby","ruby-application","ruby-on-rails","rubyonrails"],"latest_commit_sha":null,"homepage":"","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/PetrNikolas.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}},"created_at":"2018-12-01T11:39:40.000Z","updated_at":"2023-11-05T10:53:52.000Z","dependencies_parsed_at":"2023-02-11T10:30:55.620Z","dependency_job_id":null,"html_url":"https://github.com/PetrNikolas/flick","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/PetrNikolas/flick","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fflick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fflick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fflick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fflick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PetrNikolas","download_url":"https://codeload.github.com/PetrNikolas/flick/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fflick/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261494669,"owners_count":23167172,"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":["docker","gateway","gateway-api","gateway-microservice","microservice","microservices","monorepo","monorepo-architecture","monorepo-boilerplate","monorepository","postgres","postgresql","postgresql-database","rails","rails-api","rails-application","ruby","ruby-application","ruby-on-rails","rubyonrails"],"created_at":"2024-09-24T13:11:37.982Z","updated_at":"2025-06-23T14:33:10.606Z","avatar_url":"https://github.com/PetrNikolas.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flick\n\nFlick is a Rails development platform to generate, develop and deploy web applications and microservices. (Ruby, Ruby on Rails, Postgres, etc.)\n\n- Version 0.0.3\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Project Setup](#project-setup)\n- [Tools](#tools)\n- [Deployment](#deployment)\n\n## Prerequisites\n\n- [Ruby](https://www.ruby-lang.org/en/downloads/)\n- [Ruby on Rails](http://guides.rubyonrails.org/getting_started.html)\n- [RVM](https://rvm.io/)\n- [PostgreSQL DB](https://www.postgresql.org/docs/)\n\n## Project Setup\n\n- For production, you need to replace the asterisk with the URL of your client-side application in ./config/initializers/cors.rb file.\n\n1. Clone or download this repo\n2. Run `bundle install`\n3. Run `rake db:create`\n4. Run `bin/rails db:migrate RAILS_ENV=development`\n5. Run `bin/rails db:seed RAILS_ENV=development`\n6. Run `chmod +x scripts/*.bash`\n7. Run `./scripts/install-hooks.bash`\n8. Run `brew install overmind` (for MacOS users)\n9. Run `overmind start`\n10. Visit --\u003e [http://localhost:5000/](http://localhost:5000/). That's it!.\n\n### Maybe you need start postgres server\n\n`brew services start postgresql`\n\nOr, if you don't want/need a background service you can just run:\n`pg_ctl -D /usr/local/var/postgres start`\n\n## Tools\n\n- Run `rubocop` for Ruby lint.\n- Run `rubocop -a` for fixed some issues automatically.\n- Run `reek .` for analyzing code.\n- Run `brakeman` for static analysis and for security vulnerabilities.\n- Run `rails_best_practices .` in root app directory. Helps to find unused methods, missing indexes into database tables and many other things.\n\n### Annotate (aka AnnotateModels) usage\n\nTo annotate all your models, tests, fixtures, and factories:\n\n```bash\ncd /path/to/app\nannotate\n```\n\nTo annotate just your models, tests, and factories:\n\n```bash\nannotate --exclude fixtures\n```\n\nTo annotate just your models:\n\n```bash\nannotate --exclude tests,fixtures,factories,serializers\n```\n\nTo annotate routes.rb:\n\n```bash\nannotate --routes\n```\n\nTo remove model/test/fixture/factory/serializer annotations:\n\n```bash\nannotate --delete\n```\n\nTo remove routes.rb annotations:\n\n```bash\nannotate --routes --delete\n```\n\nTo automatically annotate every time you run db:migrate, either run rails g annotate:install or add Annotate.load_tasks to your `Rakefile`. See the configuration in Rails section for more info.\n\n## Deployment\n\nDoc for deployment is [here.](./DEPLOYMENT.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrnikolas%2Fflick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetrnikolas%2Fflick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrnikolas%2Fflick/lists"}