Skip to content

Commit

Permalink
Resolve merge conflics
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandotfurrer committed Apr 22, 2024
2 parents 95d128f + fbf1ee9 commit ca4e2f1
Show file tree
Hide file tree
Showing 59 changed files with 19,765 additions and 956 deletions.
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,45 @@ amplifytools.xcconfig
.secret-*
**.sample
#amplify-do-not-edit-end

# @generated expo-cli sync-b5df6a44d8735348b729920a7406b633cfb74d4c
# The following patterns were generated by expo-cli

# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo

# @end expo-cli
android/
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"files.autoSave": "off"
"files.autoSave": "afterDelay"
}
36 changes: 33 additions & 3 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,47 @@ import { Filter } from './screens/Filter';
import { ShoppingListScreen } from './screens/ShoppingList';
import { LoginScreen } from './screens/Login';
import { SignUpScreen } from './screens/SignUp';
import { DietaryAllergenFilterScreen } from './screens/DietaryAllergenFilter';
import { AcctSavedRecipesScreen } from './screens/AcctSavedRecipes';
import { AccountSettingsMenu } from './screens/AccountSettingsMenu';
import { AccountDetailsScreen } from './screens/AccountDetailsScreen';
import { AddIngredient } from './screens/AddIngredient';

const Stack = createNativeStackNavigator();

function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName='Home'>
<Stack.Navigator initialRouteName='Login'>
<Stack.Screen
name='Home'
component={HomeScreen}
options={{ headerShown: false }}
/>

<Stack.Screen
name='Recipe'
component={RecipeScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='Ingredient'
component={IngredientScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='Filter'
component={FilterScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='ShoppingList'
component={ShoppingListScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='AccountSettingsMenu'
component={AccountSettingsMenu}
options={{ headerShown: false }}
/>
<Stack.Screen
name='Login'
component={LoginScreen}
Expand Down
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ psycopg2-binary = "*"
python-dotenv = "1.0.1"
django-allauth = "0.61.1"
drf-yasg = "1.21.7"
dj-rest-auth = "6.0.0"
dj-database-url = "*"

[dev-packages]
pytest = "*"
Expand Down
32 changes: 12 additions & 20 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,10 @@ tasks:
shell:
desc: Start Python Virtual Environment
cmds:

mac-init:
desc: Initialize Backend with Mac
cmds:
- pip3 install pipenv
- pipenv install --dev
- pipenv shell
Loading

0 comments on commit ca4e2f1

Please sign in to comment.