├── .gitattributes ├── LICENSE ├── README.md ├── client ├── .DS_Store ├── .babelrc ├── .flowconfig ├── .gitignore ├── .vscode │ └── launch.json ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── actions │ ├── alertsActions.js │ ├── authActions.js │ └── index.js ├── api │ └── index.js ├── app.json ├── app │ └── .DS_Store ├── components │ ├── .DS_Store │ ├── Alert.js │ ├── AlertsContainer.js │ ├── App.js │ ├── Home.js │ ├── Login.js │ ├── Main.js │ ├── Profile.js │ ├── Register.js │ ├── Screen1.js │ ├── Screen2.js │ └── Screen3.js ├── config │ └── routes.js ├── jsconfig.json ├── package.json ├── reducer │ ├── alertsReducer.js │ ├── authReducer.js │ └── index.js └── store │ └── index.js └── server ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc └── app.cpython-36.pyc ├── app.py ├── controllers ├── __pycache__ │ └── user_controller.cpython-36.pyc └── user_controller.py ├── models ├── __pycache__ │ ├── model_utils.cpython-36.pyc │ └── user.cpython-36.pyc └── user.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/.DS_Store -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/.babelrc -------------------------------------------------------------------------------- /client/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/.flowconfig -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/.vscode/launch.json -------------------------------------------------------------------------------- /client/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /client/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/App.js -------------------------------------------------------------------------------- /client/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/App.test.js -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/README.md -------------------------------------------------------------------------------- /client/actions/alertsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/actions/alertsActions.js -------------------------------------------------------------------------------- /client/actions/authActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/actions/authActions.js -------------------------------------------------------------------------------- /client/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/actions/index.js -------------------------------------------------------------------------------- /client/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/api/index.js -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/app.json -------------------------------------------------------------------------------- /client/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/app/.DS_Store -------------------------------------------------------------------------------- /client/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/.DS_Store -------------------------------------------------------------------------------- /client/components/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Alert.js -------------------------------------------------------------------------------- /client/components/AlertsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/AlertsContainer.js -------------------------------------------------------------------------------- /client/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/App.js -------------------------------------------------------------------------------- /client/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Home.js -------------------------------------------------------------------------------- /client/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Login.js -------------------------------------------------------------------------------- /client/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Main.js -------------------------------------------------------------------------------- /client/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Profile.js -------------------------------------------------------------------------------- /client/components/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Register.js -------------------------------------------------------------------------------- /client/components/Screen1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Screen1.js -------------------------------------------------------------------------------- /client/components/Screen2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Screen2.js -------------------------------------------------------------------------------- /client/components/Screen3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/components/Screen3.js -------------------------------------------------------------------------------- /client/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/config/routes.js -------------------------------------------------------------------------------- /client/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/jsconfig.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/package.json -------------------------------------------------------------------------------- /client/reducer/alertsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/reducer/alertsReducer.js -------------------------------------------------------------------------------- /client/reducer/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/reducer/authReducer.js -------------------------------------------------------------------------------- /client/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/reducer/index.js -------------------------------------------------------------------------------- /client/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/client/store/index.js -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /server/__pycache__/app.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/__pycache__/app.cpython-36.pyc -------------------------------------------------------------------------------- /server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/app.py -------------------------------------------------------------------------------- /server/controllers/__pycache__/user_controller.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/controllers/__pycache__/user_controller.cpython-36.pyc -------------------------------------------------------------------------------- /server/controllers/user_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/controllers/user_controller.py -------------------------------------------------------------------------------- /server/models/__pycache__/model_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/models/__pycache__/model_utils.cpython-36.pyc -------------------------------------------------------------------------------- /server/models/__pycache__/user.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/models/__pycache__/user.cpython-36.pyc -------------------------------------------------------------------------------- /server/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/models/user.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damgambit/react_native-python_flask-sql-with-authentication-boilerplate/HEAD/server/requirements.txt --------------------------------------------------------------------------------