mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:13:26 +00:00
34 lines
711 B
Markdown
34 lines
711 B
Markdown
# movie-web native-app
|
|
|
|
Native-app for movie-web.
|
|
|
|
## Getting started
|
|
```
|
|
pnpm install
|
|
|
|
// Having nx installed globally is recommended
|
|
pnpm install -g nx
|
|
|
|
// If you don't want nx installed globally, you can use the following command
|
|
(pnpm dlx or npx) nx <command>
|
|
```
|
|
|
|
## Running tasks
|
|
|
|
To execute tasks with Nx use the following syntax:
|
|
|
|
```
|
|
nx <target> <project> <...options>
|
|
```
|
|
|
|
For example, to run the mobile app:
|
|
```
|
|
nx run mobile
|
|
```
|
|
|
|
## Repository information
|
|
This project uses Nx to manage the monorepo. For more information about Nx, visit [nx.dev](https://nx.dev).
|
|
|
|
### Mobile app
|
|
The mobile app is built with React Native and Expo. For more information about Expo, visit [expo.io](https://expo.io).
|