Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omarchehab98/cscc01-team6
Semester Project for UofT's Software Engineering course CSCC01
https://github.com/omarchehab98/cscc01-team6
Last synced: 29 days ago
JSON representation
Semester Project for UofT's Software Engineering course CSCC01
- Host: GitHub
- URL: https://github.com/omarchehab98/cscc01-team6
- Owner: omarchehab98
- Created: 2018-12-06T23:18:34.000Z (about 6 years ago)
- Default Branch: development
- Last Pushed: 2018-12-06T23:19:32.000Z (about 6 years ago)
- Last Synced: 2024-10-31T18:52:05.057Z (2 months ago)
- Language: Java
- Size: 13.5 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Team 6
## Table of Contents
### Documents
* Team Agreement
* Team Introduction
* Team Logo### Product Backlog
Contains folders containing each version of the following:
* Personas
* User Stories### Sprint Backlog
Contains folders containing each version of the following:
* Sprint Plan
* Provisional Burndown Chart
* Sprint Execution
* Execution Burndown Chart
* Task Breakdown (From Sprint 3 onwards)As well as a breakdown of the tasks from the kanban board for each deliverable
Task breakdowns before Sprint 3 are contained in the Deliverable 3 Task Breakdown file.### Code Review
Contains code review documentation for each of the following:
* Deliverable 4
### Demonstration Video
You can find the link to the demonstration video here
[https://drive.google.com/file/d/16BlK3z_aXLJYJJWubMW8FtGxIGjoHuWv/view?usp=sharing](https://drive.google.com/file/d/16BlK3z_aXLJYJJWubMW8FtGxIGjoHuWv/view?usp=sharing)### Development Environment
* [JDK 1.8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) or later
* [Maven 3.2+](https://maven.apache.org/download.cgi)
* [MySQL 5.6](https://dev.mysql.com/downloads/mysql/5.6.html)```sh
cp src/main/resources/application-local.properties src/main/resources/application.properties
mvn spring-boot:run
```### Docker
```
cp src/main/resources/application-docker.properties src/main/resources/application.properties
docker-compose up
```### Production
```sh
mvn package && java -jar target/team6-0.1.0.jar
```