Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliasgcf/ecoleta
♻️ Full Application was developed on Next Level Week #1 event by @Rocketseat
https://github.com/eliasgcf/ecoleta
ecology expo nodejs react-native reactjs
Last synced: 12 days ago
JSON representation
♻️ Full Application was developed on Next Level Week #1 event by @Rocketseat
- Host: GitHub
- URL: https://github.com/eliasgcf/ecoleta
- Owner: EliasGcf
- License: mit
- Created: 2020-06-01T11:35:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T15:01:26.000Z (about 4 years ago)
- Last Synced: 2024-10-12T12:43:39.803Z (26 days ago)
- Topics: ecology, expo, nodejs, react-native, reactjs
- Language: TypeScript
- Homepage:
- Size: 2.11 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ecoleta - The easiest way to throw away your trash
About the project |
Technologies |
Getting started |
How to contribute |
License## :recycle: About the project
This project was developed on the Next Level Week event by [Rocketseat](https://rocketseat.com.br/) 🚀 💜
With the idea to help world ecosystem, this software provide a flow to create recyclable garbage collection points and show in a map around you. In the end, you can send a text message using the whatsapp or an email, and make the world better witout trash.
## 🚀 Technologies
Technologies that I used to develop this application
- [Node.js](https://nodejs.org/en/)
- [ReactJS](https://reactjs.org/)
- [React Native](https://reactnative.dev/)
- [TypeScript](https://www.typescriptlang.org/)
- [React Leaflet](https://react-leaflet.js.org/)
- [Expo](https://expo.io/)
- [Express](https://expressjs.com/pt-br/)
- [Knex](http://knexjs.org/)
- [SQLite](https://www.sqlite.org/)
- [React Router DOM](https://reacttraining.com/react-router/)
- [React Navigation](https://reactnavigation.org/)
- [React Icons](https://react-icons.netlify.com/#/)
- [EditorConfig](https://editorconfig.org/)## 💻 Getting started
Import the `Insomnia.json` on Insomnia App or click on [Run in Insomnia](#insomniaButton) button
### Requirements
- [Node.js](https://nodejs.org/en/)
- [Yarn](https://classic.yarnpkg.com/)
- [Expo](https://expo.io/)**Clone the project and access the folder**
```bash
$ git clone https://github.com/EliasGcf/ecoleta.git && cd ecoleta
```**Install dependencies**
```bash
$ yarn
```**Follow the steps below**
### Backend
```bash
# Install the dependencies
$ yarn# Use the script to run the migrations
$ yarn server knex:migrate# Use the script to run the seeds
$ yarn server knex:seed# To finish, run the api service
$ yarn server dev# Well done, project is started!
```### Web
_Obs.: Before to continue, be sure to have the API running_
```bash
# Install the dependencies
$ yarn# Be sure the file 'clients/web/src/services/api.ts' have the IP to your API
# Start the client
$ yarn web start
```### Mobile
_Obs.: Before to continue, be sure to have the API running_
```bash
# Install the dependencies
$ yarn# Be sure the file 'clients/mobile/src/services/api.ts' have the IP to your API
# Start the expo service and scan the QR code with Expo Client
$ yarn mobile start
```## 🤔 How to contribute
**Make a fork of this repository**
```bash
# Fork using GitHub official command line
# If you don't have the GitHub CLI, use the web site to do that.$ gh repo fork EliasGcf/ecoleta
```**Follow the steps below**
```bash
# Clone your fork
$ git clone your-fork-url && cd ecoleta# Create a branch with your feature
$ git checkout -b my-feature# Make the commit with your changes
$ git commit -m 'feat: My new feature'# Send the code to your remote branch
$ git push origin my-feature
```After your pull request is merged, you can delete your branch
## 📝 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
Made with 💜 by Elias Gabriel 👋 [See my linkedin](https://www.linkedin.com/in/eliasgcf/)