Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arbiminanda/plant-chamber-monitor-app
Apps for monitor microclimate condition and plant images of growth chamber system
https://github.com/arbiminanda/plant-chamber-monitor-app
django-framework javascript python3 react
Last synced: about 7 hours ago
JSON representation
Apps for monitor microclimate condition and plant images of growth chamber system
- Host: GitHub
- URL: https://github.com/arbiminanda/plant-chamber-monitor-app
- Owner: arbiminanda
- Created: 2022-01-30T08:12:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T16:15:26.000Z (9 months ago)
- Last Synced: 2024-02-22T17:34:17.830Z (9 months ago)
- Topics: django-framework, javascript, python3, react
- Language: JavaScript
- Homepage:
- Size: 313 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plant-chamber-monitor-app
Tools used: React.js, Django, SQLite
Course References: [React JS + Python Django + SQLite | Fullstack App Tutorial](https://www.youtube.com/watch?v=WsBYK5Nv2V8&t=2620s)
Result: [stormy-stream-35141.herokuapp.com](https://stormy-stream-35141.herokuapp.com/)
API Base URL: [plantchambermonitorapi.herokuapp.com](https://plantchambermonitorapi.herokuapp.com/)
About the project: [Final Presentation of Mobile Computing and Web Technology Course](https://docs.google.com/presentation/d/1AwnkB7VFRMF_U3N514gIqtQ_gwpDk5Z1/edit?usp=sharing&ouid=108280050431583243416&rtpof=true&sd=true)
Steps to run Django project in local:
- change the use of this library
```
from django.conf.urls import url
```
to
```
from django.urls import repath (if any)
```
- create requirements.txt and copy this text to that file:
```
asgiref==3.6.0
Django==4.2
django-cors-headers==3.14.0
djangorestframework==3.14.0
gunicorn==20.1.0
pytz==2023.3
sqlparse==0.4.3
```
- Run these commands:
```
pip install -r requirements.txt
pip manage.py migrate
pip manage.py runserver
```