Ripple Effect is a mobile Progressive Web App (PWA) designed to empower you to understand and manage your water footprint. It guides you through calculating your water consumption based on your dietary choices, tracks your progress over time, and allows you to share your water footprint data for positive social impact.
- Node.js and npm (or yarn): Ensure these tools are installed for server-side development.
- TypeScript: This statically typed language is used for building the server. Make sure you have it installed globally or locally.
- Android Studio: Download and install the latest version to develop the app.
- Android SDK: Set up the necessary Android SDK components within Android Studio.
- Java Development Kit (JDK): A compatible JDK is required for Android development. Android Studio might bundle one, but you may need a specific version.
git clone https://github.com/arghyam/ripple-effect.git
Navigate to the server directory and run:
cd ripple-effect/server
npm install
Create a .env.local file at the root of the server directory and add the following variables, replacing placeholders with your actual values:
Environment Variable | Description |
---|---|
DB_DIALECT | Database dialect (e.g., postgres, mysql) |
DB_HOST | Database host address |
DB_PORT | Database port number |
DB_NAME | Database name |
DB_USERNAME | Database username |
DB_PASSWORD | Database password |
SERVER_PORT | Server port number (e.g., 3000) |
JWT_SECRET | Secret key for JSON Web Tokens |
NODEMAILER_HOST | Email server host |
NODEMAILER_PORT | Email server port (default for SMTP) |
NODEMAILER_AUTH_USER | Email authentication username |
NODEMAILER_AUTH_PASSWORD | Email authentication password |
NODEMAILER_SENDER_MAIL | Email address used for sending notifications |
If your project has a build step, run:
tsc
Navigate to the dist directory and run:
cd dist
node index.js
See step 1 from the server setup.
- Launch Android Studio.
- Click "Open an existing Android Studio project".
- Select the client directory of the cloned repository.
Wait for Android Studio to synchronize the project with Gradle. This might take some time.
- Click the green "Run" button in the toolbar.
- Choose an emulator or connected device to run the app.
Open the app-level build.gradle file and ensure you have defined debug and release build types. For the release type, configure signing configurations:
buildTypes {
release {
isMinifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
Go to Build -> Generate Signed Bundle / APK. Choose APK and click Next. Select your keystore and provide the necessary passwords. Choose the output directory and build type (release). Click Finish. Replace placeholders with your actual keystore information.
The signed APK will be located in the output directory you specified in the previous step.
Development: Use the debug build type for testing
A mobile (PWA) app that users can interact with. It will allow users to Calculate their water footprint by entering the food they consume Track their water footprint Share their water footprint chart on social media
Any other frameworks can be used NextJS NodeJS MySQL Android Studio VS Code PgAdmin
Image 1 | Image 2 | Image 3 |
---|---|---|
Image 4 | Image 5 | Image 6 |
Image 7 | Image 8 | Image 9 |
Image 10 | Image 11 | Image 12 |
Image 13 | ||