- Table of contents
- Project Status
- Introduction
- Backend Installation and Run
- Frontend Installation and Run
- API Endpoints
Django+Restful Framework+React+Semi Design
ZooConnect This project is part of a Django-based digital zoo management system. It provides the following features:
- Animals Management
- Habitats Management
- Users Management
- Activities Management
- Staff Management
- Clone the project to your local machine:
git clone https://github.com/lzpmpc005/ZooConnect.git
cd ZooConnect
- Create a Django environment and install backend dependencies:
pip install django
pip install django_rest_framework
pip install -r requirements.txt
- Perform database migration:
python manage.py makemigrations
python manage.py migrate
- Run the development server:
python manage.py runserver
- Visit http://localhost:8000/ to view the project.
💡 Attention:All images from Internet, do not use theose images examples for business usage [Unsplash].
- Clone the project to your local machine:
git clone https://github.com/lzpmpc005/ZooConnect.git
cd frontend
- Download Node.js and NPM environment and test :
npm -v
node -v
- React Installaion and RUN:
cnpm install -g create-react-app
cd frontend/
- Semi UI Installation and RUN:
npm install @douyinfe/semi-ui
npm install @douyinfe/semi-icons-lab
npm install react-router-dom
- Visit http://localhost:3000/ to view the frontend.
💡 Attention:All images from Internet, do not use theose image examples for business usage [Images via Unsplash].
"animals": "http://127.0.0.1:8000/api/animals/", "habitats": "http://127.0.0.1:8000/api/habitats/", "zookeepers": "http://127.0.0.1:8000/api/zookeepers/", "carelogs": "http://127.0.0.1:8000/api/carelogs/", "members": "http://127.0.0.1:8000/api/members/", "activities": "http://127.0.0.1:8000/api/activities/", "tour_schedules": "http://127.0.0.1:8000/api/tour_schedules/"