├── .gitignore ├── README.md ├── part0 └── README.md ├── part1 ├── README.md ├── anecdotes │ └── .keep ├── courseinfo │ └── README.md └── unicafe │ └── .keep └── part2 ├── countries └── .keep └── phonebook └── .keep /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # example-submission-repository 2 | 3 | 4 | You may submit all the exercises of this course into the same repository, or use multiple repositories. If you submit exercises of different parts into the same repository, please use a sensible naming scheme for the directories. 5 | 6 | One very functional file structure for the submission repository is as follows: 7 | 8 |
9 | part0 10 | part1 11 | courseinfo 12 | unicafe 13 | anecdotes 14 | part2 15 | phonebook 16 | countries 17 |18 | 19 | Put the whole react repository of the project to each folder except the folder node_modules -------------------------------------------------------------------------------- /part0/README.md: -------------------------------------------------------------------------------- 1 | Solutions of part 0 exercises to this folder -------------------------------------------------------------------------------- /part1/README.md: -------------------------------------------------------------------------------- 1 | Solutions of part 1 exercises to this folder, one app per folder 2 | 3 | eg. the project unicafe for exercises 1.6.-1.11 as folder unicafe -------------------------------------------------------------------------------- /part1/anecdotes/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/example-submission-repository/9d38c11a53f175b95f1f493a3a47dc01cfc3bfb2/part1/anecdotes/.keep -------------------------------------------------------------------------------- /part1/courseinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/example-submission-repository/9d38c11a53f175b95f1f493a3a47dc01cfc3bfb2/part1/courseinfo/README.md -------------------------------------------------------------------------------- /part1/unicafe/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/example-submission-repository/9d38c11a53f175b95f1f493a3a47dc01cfc3bfb2/part1/unicafe/.keep -------------------------------------------------------------------------------- /part2/countries/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/example-submission-repository/9d38c11a53f175b95f1f493a3a47dc01cfc3bfb2/part2/countries/.keep -------------------------------------------------------------------------------- /part2/phonebook/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/example-submission-repository/9d38c11a53f175b95f1f493a3a47dc01cfc3bfb2/part2/phonebook/.keep --------------------------------------------------------------------------------