https://github.com/Neeleshrj/store-your-meds
https://github.com/Neeleshrj/store-your-meds
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Neeleshrj/store-your-meds
- Owner: Neeleshrj
- License: mit
- Created: 2022-10-14T20:42:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-14T20:43:13.000Z (about 3 years ago)
- Last Synced: 2025-03-15T10:01:53.879Z (8 months ago)
- Language: JavaScript
- Size: 313 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-appwrite - Source Code
README
# Store your meds with React Native and Expo
A simple application that lets you organize your medicines with React Native and Expo.
## Screenshots
-
Sign In
-
Sign Up
-
Medicine List
-
Empty
-
With Content
-
-
Add medicines
## Getting Started
### Install Appwrite
Follow the simple [Installation Guide](https://appwrite.io/docs/installation) to get Appwrite up and running in no time. You can either deploy Appwrite on your local machine or, on any cloud provider of your choice.
We need to make a few configuration changes to your Appwrite server.
* Go to Database and create a new Database.

* Go inside your database and create a new collection.

* Add the following attributes to the collection.



* Go to settings and add the following permissions to your collections.

> Note: You would need to name the collection and attributes same as in the screenshots above.
### Run the front-end locally
You need to follow these steps to start the front end.
You will need to fill in these environment variables that help your frontend connect to Appwrite.
* BASE_URL - Your Appwrite URL
* DB_ID - Your Database ID
Follow these instructions to run the demo app locally
```sh
$ git clone https://github.com/Neeleshrj/store-your-meds-rn.git
$ cd store-your-meds
```
Run the following command to generate your `.env` vars
```sh
$ cp .env.example .env
```
Now fill in the envrionment variables we discussed above in your `.env`
Now run the following commands to start your expo application and scan the QR code to run it on your device
```
$ yarn
$ npx expo start
```