https://github.com/googleinterns/step26-2020
GrowPod is a community garden management web app.
https://github.com/googleinterns/step26-2020
Last synced: 11 months ago
JSON representation
GrowPod is a community garden management web app.
- Host: GitHub
- URL: https://github.com/googleinterns/step26-2020
- Owner: googleinterns
- License: apache-2.0
- Archived: true
- Created: 2020-06-19T16:18:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T22:30:22.000Z (over 2 years ago)
- Last Synced: 2025-03-21T02:11:36.388Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://beta26-step-2020.uc.r.appspot.com
- Size: 920 KB
- Stars: 4
- Watchers: 5
- Forks: 4
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GrowPod
by Kayla Harwell, Stephanie Galvan, and Cody Rivera
This is a community garden management web app that targets Google Cloud's
App Engine.
* [Beta Website](https://beta26-step-2020.uc.r.appspot.com)
* [Production Website](https://prod26-step-2020.uc.r.appspot.com)
## Build Instructions
Before the build, execute this command in Cloud Shell to install
all needed depencencies:
```bash
make install
```
To run a development server, execute this command in Cloud Shell:
```bash
make dev
```
Changes to the frontend will be immediately reflected, while changes
to the backend require the development server be restarted.
To run a production server, execute this command in Cloud Shell:
```bash
make prod
```
To deploy, set the `deploy.projectId` field in `pom.xml`
and execute this command in Cloud Shell:
```bash
make deploy
```