- 🤖 Introduction
- ⚙️ Tech Stack
- 🔋 Features
- 🤸 Quick Start
- 🛠️ Configuration
- 🧩 Components
Aora is a mobile application built with React Native for a seamless user experience. It leverages the Animatable library for captivating animations and integrates with the robust backend systems of Appwrite, enabling seamless sharing of AI-generated videos within the community.
Join our active Discord community with over 27k+ members for support and discussions.
- React Native
- Expo
- Nativewind
- Animatable
- Appwrite
- Onboarding Screen: Engaging graphics and clear instructions welcome users to the app.
- Robust Authentication & Authorization System: Secure email login safeguards user accounts.
- Dynamic Home Screen with Animated Flat List: Smoothly animated flat list showcases the latest videos for seamless browsing.
- Pull-to-Refresh Functionality: Users can refresh content with a simple pull gesture for up-to-date information.
- Full-Text Search Capability: Efficiently search through videos with real-time suggestions and instant results.
- Tab Navigation: Navigate between sections like Home, Search, and Profile with ease using tab navigation.
- Post Creation Screen for Uploading Media: Upload video and image posts directly from the app with integrated media selection.
- Profile Screen with Detailed Insights: View account details and activity, including uploaded videos and follower count, for a personalized experience.
- Responsiveness: Smooth performance and adaptability across various devices and screen sizes for a consistent user experience.
- Animations: Dynamic animations using the Animatable library to enhance user interaction and engagement throughout the app's UI.
Follow these steps to set up the project locally on your machine.
Make sure you have the following installed on your machine:
git clone https://github.com/adrianhajdin/aora.git
cd aora
Install the project dependencies using npm:
npm install
npm start
Download the Expo Go app onto your device, then use it to scan the QR code from Terminal and run.
- App Name: Aora
- Bundle ID:
- Update
app.json
underandroid
with"package": ""
- Update
-
Create Project Directory
mkdir lib && touch lib/appWrite.js
-
AppWrite Configuration
export const appwriteConfig = { endpoint: 'https://cloud.appwrite.io/v1', platform: '', projectId: '' }
-
Database Setup
- Database ID:
''
- Collections:
- Users:
userCollectionId: ''
- Attributes:
username (string)
,email (email)
,avatar (url)
,accountId (string)
- Permissions:
CRUD (any)
- Attributes:
- Videos:
videoCollectionId: ''
- Attributes:
title (string)
,thumbnail (url)
,prompt (string)
,video (url)
- Relationship: One-way with
users
(creator
) - Permissions:
CRUD (all users)
- Attributes:
- Users:
- Database ID:
-
Storage Setup
- Bucket Name:
files
- Storage ID:
''
- Permissions:
- CRUD (all users)
- Read (all guests)
- Allowed file types:
jpg, png, gif, mp4
- Bucket Name:
npx expo install react-native-appwrite react-native-url-polyfill
Location: components/CustomButton.jsx
Location: components/FormField.jsx
Location: app/(tabs)/_layout.jsx
Location: app/(auth)/_layout.jsx
Location: app/_layout.jsx
Code:
<Stack.Screen name="(auth)" options={{ headerShown: false }} />
- Added input area for Username
- Modified text and layout for better user experience