Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thederickff/developertoolsusecases
Application used on the Browser Developer Tools - Using for everything udemy course. To show the usage of the developer tools
https://github.com/thederickff/developertoolsusecases
angular developer-tools ionic
Last synced: about 1 month ago
JSON representation
Application used on the Browser Developer Tools - Using for everything udemy course. To show the usage of the developer tools
- Host: GitHub
- URL: https://github.com/thederickff/developertoolsusecases
- Owner: thederickff
- Created: 2024-02-18T15:38:25.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-25T09:37:10.000Z (7 months ago)
- Last Synced: 2024-10-14T16:40:11.487Z (about 1 month ago)
- Topics: angular, developer-tools, ionic
- Language: TypeScript
- Homepage:
- Size: 10.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Developer Tools Use Cases
Application used to show the usage of the browser developer tools on the `Browser Developer Tools - Using for everything` udemy course.## Project Install
1. Clone the project and install dependencies```sh
git clone https://github.com/derickfelix/DeveloperToolsUseCases
cd DeveloperToolsUseCases/
npm install
```
2. Install Ionic CLI
```sh
npm install -g @ionic/cli
```
3. Serve
```sh
ionic serve
```
4. Preparing the project to run on android/ios apps later (Optional)
```sh
ionic build --prod
npx cap sync
```## Running the app on android platform
1. Make sure you have `Android Studio` installed
2. Build the project
```sh
ionic build --prod
```
3. Copy the generated `www/` folder to the android app.
```sh
npx cap copy android
```
4. Open the `android/` folder with `Android Studio`
```sh
npx cap open android
```## Running the app on ios platform
1. Make sure you are on a macos, and have `xcode` installed
2. Build the project
```sh
ionic build --prod
```
3. Copy the generated `www/` folder to the ios app.
```sh
npx cap copy ios
```
4. Open the `ios/` folder with `xcode`
```sh
npx cap open ios
```