- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
42 lines
580 B
Markdown
42 lines
580 B
Markdown
# ASLE Mobile App
|
|
|
|
React Native mobile application for ASLE platform.
|
|
|
|
## Setup
|
|
|
|
1. Install dependencies:
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
2. For iOS:
|
|
```bash
|
|
cd ios && pod install && cd ..
|
|
npm run ios
|
|
```
|
|
|
|
3. For Android:
|
|
```bash
|
|
npm run android
|
|
```
|
|
|
|
## Features
|
|
|
|
- Wallet connection (WalletConnect, MetaMask)
|
|
- Portfolio tracking
|
|
- Pool and vault management
|
|
- Transaction history
|
|
- Governance participation
|
|
- Push notifications
|
|
- Biometric authentication
|
|
- Offline support
|
|
- Deep linking
|
|
|
|
## Environment Variables
|
|
|
|
Create `.env` file:
|
|
```
|
|
EXPO_PUBLIC_API_URL=http://localhost:4000
|
|
```
|
|
|