This is a draft pet project for testing Generative AI on different software engineering tasks. It is planned to evolve and grow over time. Specifically, this repo will be an Angular playground.
The application's legend is based on the sports-hub application description from the following repo: Sports-Hub.
This application can be started with a docker compose using the Back-End applications mentioned.
This project was generated with Angular CLI version 18.2.8.
Run ng serve for a dev server. Navigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.
Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory.
Run ng test to execute the unit tests via Karma.
Run ng e2e to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
- Docker
- Docker Compose
The mentioned dependencies can be installed using the official documentation here. Read more about alternatives to Docker here.
To run the web application with the back-end, clone the following repository within the same folder:
#Ruby
git clone git@github.com:dark-side/sports_hub_ruby_skeleton.git
#PHP
git clone git@github.com:dark-side/sports_hub_php_skeleton.git
#Node.js
git clone git@github.com:dark-side/sports_hub_nodejs_skeleton.git
#Java
git clone git@github.com:dark-side/sports_hub_java_skeleton.git
#.Net
git clone git@github.com:dark-side/sports_hub_net_skeleton.git
#C++
git clone git@github.com:dark-side/sports_hub_cpp_skeleton.git
#Go
git clone git@github.com:dark-side/sports_hub_go_skeleton.git
#Python
git clone git@github.com:dark-side/sports_hub_python_skeleton.gitIn docker-compose.yml at the back-end application directory change the front-end directory to the current one:
frontend:
build: ../sports_hub_angular_skeleton <--- Here
depends_on:
- backend
ports:
- 3000:3000
restart: always
<<: *frontend-variablesNavigate to the back-end application directory and run (-d for detached mode to run in the background):
docker compose up -dTo get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.
Licensed under either of
Just to let you know, at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in your work, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Should you have any suggestions, please create an Issue for this repository