├── .github └── workflows │ └── manual.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE.txt ├── README.md ├── backend ├── README.md ├── flaskr │ └── __init__.py ├── models.py ├── requirements.txt ├── test_flaskr.py └── trivia.psql └── frontend ├── README.md ├── package-lock.json ├── package.json ├── public ├── art.svg ├── delete.png ├── entertainment.svg ├── favicon.ico ├── geography.svg ├── history.svg ├── index.html ├── manifest.json ├── science.svg └── sports.svg └── src ├── App.js ├── App.test.js ├── components ├── FormView.js ├── Header.js ├── Question.js ├── QuestionView.js ├── QuizView.js └── Search.js ├── index.js └── stylesheets ├── App.css ├── FormView.css ├── Header.css ├── Question.css ├── QuizView.css └── index.css /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/README.md -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/flaskr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/flaskr/__init__.py -------------------------------------------------------------------------------- /backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/models.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/test_flaskr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/test_flaskr.py -------------------------------------------------------------------------------- /backend/trivia.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/backend/trivia.psql -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/art.svg -------------------------------------------------------------------------------- /frontend/public/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/delete.png -------------------------------------------------------------------------------- /frontend/public/entertainment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/entertainment.svg -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/geography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/geography.svg -------------------------------------------------------------------------------- /frontend/public/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/history.svg -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/science.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/science.svg -------------------------------------------------------------------------------- /frontend/public/sports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/public/sports.svg -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/components/FormView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/FormView.js -------------------------------------------------------------------------------- /frontend/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/Header.js -------------------------------------------------------------------------------- /frontend/src/components/Question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/Question.js -------------------------------------------------------------------------------- /frontend/src/components/QuestionView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/QuestionView.js -------------------------------------------------------------------------------- /frontend/src/components/QuizView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/QuizView.js -------------------------------------------------------------------------------- /frontend/src/components/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/components/Search.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/stylesheets/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/stylesheets/App.css -------------------------------------------------------------------------------- /frontend/src/stylesheets/FormView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/stylesheets/FormView.css -------------------------------------------------------------------------------- /frontend/src/stylesheets/Header.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/stylesheets/Question.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/stylesheets/Question.css -------------------------------------------------------------------------------- /frontend/src/stylesheets/QuizView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/stylesheets/QuizView.css -------------------------------------------------------------------------------- /frontend/src/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/cd0037-API-Development-and-Documentation-project/HEAD/frontend/src/stylesheets/index.css --------------------------------------------------------------------------------