Right Plant Right Place Right Time implementation using React and Django: https://rightplant.biospherecapital.com/ Exported from gitlab.catalyst.net.nz on 2024-12-18
Find a file
2021-10-07 15:39:12 +13:00
backend Add django cors headers to backend 2021-10-07 10:17:32 +13:00
database Add database initialisation scripts 2021-10-06 14:37:14 +13:00
frontend Add sample mui stepper 2021-10-07 15:39:12 +13:00
docker-compose.yaml Create default django admin user on start up 2021-10-07 09:00:27 +13:00
README.md Add development environment documentation to README 2021-10-06 14:53:51 +13:00

RightTree

Right Plant Right Place Right Time implementation using React and Django.

Running application for development

Initial Setup

Before running the applications please ensure the following prerequisites have been met.

Software

Most applications in this repository are built using Docker which resolves many dependencies but you will require a local installation of git, docker and docker-compose.

$ sudo apt install git docker-compose

To install docker, follow the official installation documentation. Instructions are also available for docker-compose.

Initialise database

Creates right_tree database and installs postgis extensions.

chmod +x ./database/init_database.sh
./database/init_database.sh

Initial build

Builds the Django backend docker image. This may need to be re-run if any new dependencies are added.

docker-compose build

Run web application

Starts up the applications including the frontend, backend and database.

docker-compose up

Once running the components can be accessed as follows:

Application Hosted
React Frontend http://localhost:3000
Django Backend http://localhost:8000
Database postgis://localhost:5432