Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# mobile-react-native

[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/NeoSOFT-Technologies/mobile-react-native) [![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/NeoSOFT-Technologies/mobile-react-native)

## Table Of Content

- [Overview](#overview)
- [Getting Started](#getting-started)
* [Setup](#setup)
* [App Secrets](#app-secrets)
- [Architecture](#architecture)
* [Hexagonal Architecture](#hexagonal-architecture)
* [Clean Architecture](#clean-architecture)
* [Monorepo](#monorepo)
- [Features](#Features)
- [packages](#package)
- [Layers](#layers)
- [Flavors](#flavors)
- [Entities](#entities)
- [Dependabot](#dependabot)
- [Libraries & Tools Used](#libraries--tools-used)
- [Run Projects](#run-projects)
- [Modules](#modules)


# Overview

[React Native](https://reactnative.dev/) - is Facebook's UI toolkit for building beautiful, natively compiled applications for Android and ios from a single codebase.
Expand Down Expand Up @@ -113,7 +136,6 @@ in 'Components', 'Entity' data or 'View Model' encapsulated data is stored in th
<img src="wiki/images/inversion-of-control-v2.png" alt="inversion-of-control" title="inversion-of-control" />
In the case of 'Repository', it is an adapter layer, so you should not know about 'Repository' in 'Use Case'. Therefore, in 'Use Case', it is implemented through the Repository Interface located in the domain layer, which is then operated through Dependency Injection.

## Settings
### Package
#### Lerna
```Lerna ```is "a tool for managing JavaScript projects with multiple packages", as the official website says, which is a tool to manage multiple npm packages in a single repository.
Expand Down Expand Up @@ -222,6 +244,10 @@ $ npx lerna bootstrap
```shell
$ npx lerna run start
```
## command for legacy dependency
```shell
$ npm i --legacy-peer-deps
```

### 3-1. Mobile(iOS)
#### Install
Expand Down