├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── __main__.py ├── app ├── __init__.py ├── __main__.py ├── http │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── endpoints.py │ └── web │ │ └── app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── GithubRepo │ │ └── index.js │ │ ├── Home │ │ └── index.js │ │ ├── Login │ │ └── index.js │ │ ├── Main │ │ └── index.js │ │ ├── SearchBar │ │ └── index.js │ │ ├── apiClient.js │ │ ├── githubClient.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── kudo │ ├── __init__.py │ ├── schema.py │ └── service.py └── repository │ ├── __init__.py │ └── mongo.py ├── client_secrets.json └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/__main__.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/__main__.py -------------------------------------------------------------------------------- /app/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/http/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/http/api/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/api/endpoints.py -------------------------------------------------------------------------------- /app/http/web/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/.gitignore -------------------------------------------------------------------------------- /app/http/web/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/README.md -------------------------------------------------------------------------------- /app/http/web/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/package-lock.json -------------------------------------------------------------------------------- /app/http/web/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/package.json -------------------------------------------------------------------------------- /app/http/web/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/favicon.ico -------------------------------------------------------------------------------- /app/http/web/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/index.html -------------------------------------------------------------------------------- /app/http/web/app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/logo192.png -------------------------------------------------------------------------------- /app/http/web/app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/logo512.png -------------------------------------------------------------------------------- /app/http/web/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/manifest.json -------------------------------------------------------------------------------- /app/http/web/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/public/robots.txt -------------------------------------------------------------------------------- /app/http/web/app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/App.css -------------------------------------------------------------------------------- /app/http/web/app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/App.js -------------------------------------------------------------------------------- /app/http/web/app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/App.test.js -------------------------------------------------------------------------------- /app/http/web/app/src/GithubRepo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/GithubRepo/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/Home/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/Login/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/Main/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/SearchBar/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/apiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/apiClient.js -------------------------------------------------------------------------------- /app/http/web/app/src/githubClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/githubClient.js -------------------------------------------------------------------------------- /app/http/web/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/index.css -------------------------------------------------------------------------------- /app/http/web/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/index.js -------------------------------------------------------------------------------- /app/http/web/app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/logo.svg -------------------------------------------------------------------------------- /app/http/web/app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/reportWebVitals.js -------------------------------------------------------------------------------- /app/http/web/app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/http/web/app/src/setupTests.js -------------------------------------------------------------------------------- /app/kudo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/kudo/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/kudo/schema.py -------------------------------------------------------------------------------- /app/kudo/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/kudo/service.py -------------------------------------------------------------------------------- /app/repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/repository/__init__.py -------------------------------------------------------------------------------- /app/repository/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/app/repository/mongo.py -------------------------------------------------------------------------------- /client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/client_secrets.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/python-flask-react-crud-example/HEAD/docker-compose.yml --------------------------------------------------------------------------------