Group project for CITS5505 - Agile Web Development
UWA ID | Name | Github Username |
---|---|---|
23698749 | Aji Wuryanto | wuryantoAji |
23786945 | Chuanrui Yang | |
22609525 | Paskah Lin Shou Fa Ong | |
23743373 | Yuxin Gu |
- Create virtual environment
- For Windows/Mac
python3 -m venv venv
- For Windows/Mac
- Activate virtual environment
- For Windows
.\venv\Scripts\activate
- For MacOS/Linux
.venv/bin/activate
- For Windows
- Install requirements
pip install -r requirements.txt
- Run the application
flask --app application run --debug
- Open the hello world url
- Go to your browser and type http://localhost:5000/hello
- Introductory view -> describe context and application purpose and allowing user to create an account and login
- Find Requests view -> allow user to search and accept requests
- Create Requests view -> allow user to create request for other people to answer
- create account
- log in account
- search request
- accept request (Need discussion on how to do this)
- do request (Need discussion on how to do this)
- create request
- view my own request
- .....