Blanja is a app-based e-commerce application that allows buyers to order products of their choice. Consists of 2 types of users, namely buyers and sellers.
- Browsing items
- Order product
- History transaction
- Add or edit product (sellers only)
- Chat with seller
- Edit profile
- Reset Password
- etc
- Open your terminal or command prompt
- Type
git clone https://github.com/abdipriyangga/blanja-mobile-app.git
- Open the folder and type
npm install
oryarn install
for install dependencies from package.json - Create file .env in root directory with the following contents :
BASE_URL = "your_ip_backend_API_URL"
Example :
- http://host_backend:port_backend is http://localhost:8000
so, you can write in .env file like this :
BASE_URL = "http://localhost:8000"
- Before run this project, you must configure and run backend. You can find backend for this project here
- Type
npm run server
in terminal for running backend. - If you want to build this project, type
react-native start --reset-cache
thenreact-native run-android
.