{"id":25933392,"url":"https://github.com/hcvazquez/tiano-app","last_synced_at":"2025-07-19T05:06:45.939Z","repository":{"id":116217520,"uuid":"47088907","full_name":"hcvazquez/tiano-app","owner":"hcvazquez","description":"First app","archived":false,"fork":false,"pushed_at":"2015-11-30T23:12:44.000Z","size":3715,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-04T00:53:33.441Z","etag":null,"topics":["experimentation","full-stack","web-development"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/hcvazquez.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}},"created_at":"2015-11-30T01:47:22.000Z","updated_at":"2019-05-31T14:12:10.000Z","dependencies_parsed_at":"2023-03-13T12:59:31.371Z","dependency_job_id":null,"html_url":"https://github.com/hcvazquez/tiano-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hcvazquez/tiano-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hcvazquez%2Ftiano-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hcvazquez%2Ftiano-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hcvazquez%2Ftiano-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hcvazquez%2Ftiano-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hcvazquez","download_url":"https://codeload.github.com/hcvazquez/tiano-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hcvazquez%2Ftiano-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265892047,"owners_count":23844957,"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":["experimentation","full-stack","web-development"],"created_at":"2025-03-04T00:53:39.162Z","updated_at":"2025-07-19T05:06:45.917Z","avatar_url":"https://github.com/hcvazquez.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TianoApp\n\nThis application was generated using JHipster, you can find documentation and help at [https://jhipster.github.io](https://jhipster.github.io).\n\nBefore you can build this project, you must install and configure the following dependencies on your machine:\n\n1. [Node.js][]: We use Node to run a development web server and build the project.\n   Depending on your system, you can install Node either from source or as a pre-packaged bundle.\n\nAfter installing Node, you should be able to run the following command to install development tools (like\n[Bower][] and [BrowserSync][]). You will only need to run this command when dependencies change in package.json.\n\n    npm install\n\nWe use [Grunt][] as our build system. Install the grunt command-line tool globally with:\n\n    npm install -g grunt-cli\n\nRun the following commands in two separate terminals to create a blissful development experience where your browser\nauto-refreshes when files change on your hard drive.\n\n    mvn\n    grunt\n\nBower is used to manage CSS and JavaScript dependencies used in this application. You can upgrade dependencies by\nspecifying a newer version in `bower.json`. You can also run `bower update` and `bower install` to manage dependencies.\nAdd the `-h` flag on any command to see how you can use it. For example, `bower update -h`.\n\n# Building for production\n\nTo optimize the TianoApp client for production, run:\n\n    mvn -Pprod clean package\n\nThis will concatenate and minify CSS and JavaScript files. It will also modify `index.html` so it references\nthese new files.\n\nTo ensure everything worked, run:\n\n    java -jar target/*.war --spring.profiles.active=prod\n\nThen navigate to [http://localhost:8080](http://localhost:8080) in your browser.\n\n# Testing\n\nUnit tests are run by [Karma][] and written with [Jasmine][]. They're located in `src/test/javascript` and can be run with:\n\n    grunt test\n    \nUI end-to-end tests are powered by [Protractor][], which is built on top of WebDriverJS. They're located in `src/test/javascript/e2e` \nand can be run by starting Spring Boot in one terminal (`mvn spring-boot:run`) and running the tests (`grunt itest`) in a second one.\n\n# Continuous Integration\n\nTo setup this project in Jenkins, use the following configuration:\n\n* Project name: `TianoApp`\n* Source Code Management\n    * Git Repository: `git@github.com:xxxx/TianoApp.git`\n    * Branches to build: `*/master`\n    * Additional Behaviours: `Wipe out repository \u0026 force clone`\n* Build Triggers\n    * Poll SCM / Schedule: `H/5 * * * *`\n* Build\n    * Invoke Maven / Tasks: `-Pprod clean package`\n    * Execute Shell / Command:\n        ````\n        mvn spring-boot:run \u0026\n        bootPid=$!\n        sleep 30s\n        grunt itest\n        kill $bootPid\n        ````\n* Post-build Actions\n    * Publish JUnit test result report / Test Report XMLs: `build/test-results/*.xml,build/reports/e2e/*.xml`\n\n[JHipster]: https://jhipster.github.io/\n[Node.js]: https://nodejs.org/\n[Bower]: http://bower.io/\n[Grunt]: http://gruntjs.com/\n[BrowserSync]: http://www.browsersync.io/\n[Karma]: http://karma-runner.github.io/\n[Jasmine]: http://jasmine.github.io/2.0/introduction.html\n[Protractor]: https://angular.github.io/protractor/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhcvazquez%2Ftiano-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhcvazquez%2Ftiano-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhcvazquez%2Ftiano-app/lists"}