CMPE352/451 Group 1 repository
A web application for planning and managing gardens.
-
Navigate to the backend directory:
cd gardenPlannerBackend
-
Create a virtual environment:
python3 -m venv .venv
-
Activate the virtual environment:
source .venv/bin/activate # On Windows: .venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Run the server:
python3 manage.py runserver
The application will be available at http://127.0.0.1:8000/
-
Navigate to the frontend directory:
cd frontend
-
Run the setup command:
npm install
-
Run the server:
npm run dev
The application will be available at http://localhost:5173/
-
Navigate to CommunityGardenApp directory:
cd MOBILE/CommunityGardenApp
-
Install dependencies
npm install
-
Start the app
npx expo start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
You can start developing by editing the files inside the app directory. This project uses file-based routing.