Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mannoeu/ecoleta-backend
♻️The backend of a platform that provides waste disposal in an ecological way.
https://github.com/mannoeu/ecoleta-backend
Last synced: 1 day ago
JSON representation
♻️The backend of a platform that provides waste disposal in an ecological way.
- Host: GitHub
- URL: https://github.com/mannoeu/ecoleta-backend
- Owner: mannoeu
- Created: 2020-06-03T18:38:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T02:57:47.000Z (about 2 years ago)
- Last Synced: 2023-03-06T08:03:32.812Z (almost 2 years ago)
- Language: TypeScript
- Size: 380 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
♻️ The backend of a platform that provides waste disposal in an ecological way.## About
A platform to connect companies and entities that work with the collection of recyclable waste to people who need to dispose of their waste in an ecological way.
## Technologies
- Node.js
- TypeScript
- Express
- Cors
- Knex
- SQLite3
- Multer
- Celebrate## Usage
Change a URL for your ip in the files:
[ItemsController](src/controllers/ItemsController.ts)
[PointsController](src/controllers/PointsController.ts)```
image_url: `http://10.0.0.105:3333/uploads/${point.image}`,
```Run migrates
```
npm run knex:migrate
```Add collection items
```
npm run knex:seed
```Run application on http://locahost:3333/
```
npm run dev
```