├── .buildpacks ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── Procfile ├── README.md ├── backend ├── backend │ ├── __init__.py │ ├── authentication_middleware_jwt.py │ ├── serializers.py │ ├── settings │ │ ├── __init__.py │ │ └── dev.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── wsgi.py ├── manage.py ├── requirements.txt └── requirements │ ├── common.txt │ └── production.txt ├── frontend ├── mobile │ ├── .expo-shared │ │ └── assets.json │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__ │ │ ├── App-test.js │ │ └── __snapshots__ │ │ │ └── App-test.js.snap │ ├── app.json │ ├── assets │ │ ├── fonts │ │ │ └── SpaceMono-Regular.ttf │ │ └── images │ │ │ ├── icon.png │ │ │ ├── robot-dev.png │ │ │ ├── robot-prod.png │ │ │ └── splash.png │ ├── babel.config.js │ ├── components │ │ ├── StyledText.js │ │ ├── TabBarIcon.js │ │ └── __tests__ │ │ │ ├── StyledText-test.js │ │ │ └── __snapshots__ │ │ │ └── StyledText-test.js.snap │ ├── constants │ │ ├── Colors.js │ │ └── Layout.js │ ├── navigation │ │ ├── AppNavigator.js │ │ ├── AppNavigator.web.js │ │ └── MainTabNavigator.js │ ├── package-lock.json │ ├── package.json │ ├── screens │ │ ├── HomeScreen.js │ │ ├── LinksScreen.js │ │ └── SettingsScreen.js │ └── yarn-error.log ├── shared │ ├── api.js │ └── auth.js └── web │ ├── client │ ├── App.svelte │ ├── api_config.js │ ├── components │ │ ├── Auth.svelte │ │ ├── LoggedInApp.svelte │ │ └── LoggedOutApp.svelte │ ├── main.js │ └── utils.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── global.css │ ├── index.html │ └── manifest.json │ └── webpack.config.js └── runtime.txt /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/.buildpacks -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/README.md -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend/authentication_middleware_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/authentication_middleware_jwt.py -------------------------------------------------------------------------------- /backend/backend/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/serializers.py -------------------------------------------------------------------------------- /backend/backend/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/settings/__init__.py -------------------------------------------------------------------------------- /backend/backend/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/settings/dev.py -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/urls.py -------------------------------------------------------------------------------- /backend/backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/utils.py -------------------------------------------------------------------------------- /backend/backend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/views.py -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/backend/wsgi.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt -------------------------------------------------------------------------------- /backend/requirements/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/backend/requirements/common.txt -------------------------------------------------------------------------------- /backend/requirements/production.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | 3 | gunicorn==19.9.0 -------------------------------------------------------------------------------- /frontend/mobile/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/.expo-shared/assets.json -------------------------------------------------------------------------------- /frontend/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/.gitignore -------------------------------------------------------------------------------- /frontend/mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/mobile/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/App.js -------------------------------------------------------------------------------- /frontend/mobile/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/__tests__/App-test.js -------------------------------------------------------------------------------- /frontend/mobile/__tests__/__snapshots__/App-test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/__tests__/__snapshots__/App-test.js.snap -------------------------------------------------------------------------------- /frontend/mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/app.json -------------------------------------------------------------------------------- /frontend/mobile/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /frontend/mobile/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/assets/images/icon.png -------------------------------------------------------------------------------- /frontend/mobile/assets/images/robot-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/assets/images/robot-dev.png -------------------------------------------------------------------------------- /frontend/mobile/assets/images/robot-prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/assets/images/robot-prod.png -------------------------------------------------------------------------------- /frontend/mobile/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/assets/images/splash.png -------------------------------------------------------------------------------- /frontend/mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/babel.config.js -------------------------------------------------------------------------------- /frontend/mobile/components/StyledText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/components/StyledText.js -------------------------------------------------------------------------------- /frontend/mobile/components/TabBarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/components/TabBarIcon.js -------------------------------------------------------------------------------- /frontend/mobile/components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /frontend/mobile/components/__tests__/__snapshots__/StyledText-test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/components/__tests__/__snapshots__/StyledText-test.js.snap -------------------------------------------------------------------------------- /frontend/mobile/constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/constants/Colors.js -------------------------------------------------------------------------------- /frontend/mobile/constants/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/constants/Layout.js -------------------------------------------------------------------------------- /frontend/mobile/navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/navigation/AppNavigator.js -------------------------------------------------------------------------------- /frontend/mobile/navigation/AppNavigator.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/navigation/AppNavigator.web.js -------------------------------------------------------------------------------- /frontend/mobile/navigation/MainTabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/navigation/MainTabNavigator.js -------------------------------------------------------------------------------- /frontend/mobile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/package-lock.json -------------------------------------------------------------------------------- /frontend/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/package.json -------------------------------------------------------------------------------- /frontend/mobile/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/screens/HomeScreen.js -------------------------------------------------------------------------------- /frontend/mobile/screens/LinksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/screens/LinksScreen.js -------------------------------------------------------------------------------- /frontend/mobile/screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/screens/SettingsScreen.js -------------------------------------------------------------------------------- /frontend/mobile/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/mobile/yarn-error.log -------------------------------------------------------------------------------- /frontend/shared/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/shared/api.js -------------------------------------------------------------------------------- /frontend/shared/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/shared/auth.js -------------------------------------------------------------------------------- /frontend/web/client/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/App.svelte -------------------------------------------------------------------------------- /frontend/web/client/api_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/api_config.js -------------------------------------------------------------------------------- /frontend/web/client/components/Auth.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/components/Auth.svelte -------------------------------------------------------------------------------- /frontend/web/client/components/LoggedInApp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/components/LoggedInApp.svelte -------------------------------------------------------------------------------- /frontend/web/client/components/LoggedOutApp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/components/LoggedOutApp.svelte -------------------------------------------------------------------------------- /frontend/web/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/main.js -------------------------------------------------------------------------------- /frontend/web/client/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/client/utils.js -------------------------------------------------------------------------------- /frontend/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/package-lock.json -------------------------------------------------------------------------------- /frontend/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/package.json -------------------------------------------------------------------------------- /frontend/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/public/favicon.ico -------------------------------------------------------------------------------- /frontend/web/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/public/global.css -------------------------------------------------------------------------------- /frontend/web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/public/index.html -------------------------------------------------------------------------------- /frontend/web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/public/manifest.json -------------------------------------------------------------------------------- /frontend/web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrappi/django-svelte/HEAD/frontend/web/webpack.config.js -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.2 --------------------------------------------------------------------------------