https://github.com/skullcarvercoder/carappdemo
A car rental app demo on react native
https://github.com/skullcarvercoder/carappdemo
Last synced: about 1 year ago
JSON representation
A car rental app demo on react native
- Host: GitHub
- URL: https://github.com/skullcarvercoder/carappdemo
- Owner: SkullCarverCoder
- License: mit
- Created: 2022-12-21T00:38:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-21T05:15:13.000Z (over 3 years ago)
- Last Synced: 2025-02-05T02:43:47.194Z (over 1 year ago)
- Language: TypeScript
- Size: 523 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
👨💻🚘CarAppDemo
A car rental app demo on react native
## Running locally
CarAppDemo is built on React Native + Expo and therefore assumes you have [node](https://nodejs.org/en/) installed, [nvm](https://github.com/nvm-sh/nvm) is recommended as is easy to install out of the box running the latest LTS version.
```sh
# clone the project and cd into it
git clone git@github.com:SkullCarverCoder/CarAppDemo.git && cd ./CarAppDemo
# install dependencies
# replace 'npm' with 'yarn' if preferred
npm install
# start on web
npm run web
```
## Troubleshooting
if running the web server fails with the following code
```sh
...
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
```
set this
```sh
export NODE_OPTIONS=--openssl-legacy-provider
```
and run again
```sh
npm run web
```