61 lines
1.4 KiB
Markdown
61 lines
1.4 KiB
Markdown
# Fact Checker App
|
|
|
|
A mobile application built with Expo that helps users verify information and detect misinformation across various sources.
|
|
|
|
## Prerequisites
|
|
|
|
- [Node.js](https://nodejs.org/) (v16 or higher)
|
|
- [npm](https://www.npmjs.com/) (v8 or higher)
|
|
- [Expo CLI](https://docs.expo.dev/workflow/expo-cli/) (`npm install -g expo-cli`)
|
|
|
|
## Installation
|
|
|
|
1. Clone the repository:
|
|
```bash
|
|
git clone https://github.com/yourusername/fact-checker-app.git
|
|
cd fact-checker-app
|
|
```
|
|
|
|
2. Install dependencies:
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
3. Start the development server:
|
|
```bash
|
|
npx expo start
|
|
```
|
|
|
|
## Development
|
|
|
|
- Run in development mode:
|
|
```bash
|
|
npx expo start
|
|
```
|
|
|
|
- Run with specific platform:
|
|
```bash
|
|
npx expo start --android
|
|
```
|
|
|
|
## Testing
|
|
|
|
```bash
|
|
npm run test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
1. Fork the repository
|
|
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
|
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
|
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
5. Open a Pull Request
|
|
|
|
## License
|
|
|
|
This project is released under Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication.
|
|
|
|
To the extent possible under law, the author has waived all copyright and related or neighboring rights to this work. This work is published from: [Your Country].
|
|
|
|
For more information, please visit: https://creativecommons.org/publicdomain/zero/1.0/
|