Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/migrating services #21

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version = "0.2.0"
version = "0.3.0"
update_changelog_on_bump = true
major_version_zero = true
2 changes: 2 additions & 0 deletions client-new/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { NativeBaseProvider, extendTheme } from "native-base";
import { SafeAreaProvider } from "react-native-safe-area-context";
import { Auth0Provider } from "react-native-auth0";
import { AuthProvider } from "./src/contexts/AuthContext";
import { getUser } from "./src/services/TestService";

export default function App() {
const theme = extendTheme({
Expand All @@ -16,6 +17,7 @@ export default function App() {
<SafeAreaProvider>
<NativeBaseProvider>
<Router />
getUser()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to remove this

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fax

</NativeBaseProvider>
</SafeAreaProvider>
</AuthProvider>
Expand Down
81 changes: 81 additions & 0 deletions client-new/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
## 0.3.0 (2023-11-01)

### Feat

- **server**: implemented services, controller, route, etc. to improve code quality
- **HomeScreen**: added new HomeScreen component/screen
- **HomeScreen**: implemented a simple HomeScreen for allhands

### Fix

- **persona.go**: linting error
- **Router.tsx**: added route for GuidesPage

## 0.2.0 (2023-10-19)

### BREAKING CHANGE

- Completely redos frontend

### Feat

- **Slider**: Make Slider update state
- **Onboarding-Flow**: Added boiler plate for Onboarding Context
- redo how the frontend is set up
- **migrations**: added insert, drop, and reset
- **db.go**: function to add data to the db

### Fix

- **Yarn-lock**: Fix node package issues that causes build to fail
- **taskfile.yaml**: added task kill function

## 0.1.1 (2023-10-07)

### Fix

- **db.go**: added error checking for migration

## 0.1.0 (2023-10-07)

### Feat

- **aws.go**: established s3 connectivity

### Fix

- added permissions
- **CI.yaml**: port change
- **CI.yaml**: remove alove instances of postgres
- **CI.yaml**: missing dependency
- **scripts/verify_os.sh**: added functionality to differ scripts per os
- **make-linter-happy**: made distinct err names
- **init.sql**: spelling

## 0.0.4 (2023-09-28)

### Fix

- **init.sql**: foreign key constrains
- **init.sql**: bad sql statements, errors on migration

### Refactor

- **TestComponent.tsx**: updated the text
- **init.sql**: updated migrations file for creating the db
- installation process
- **main.go**: fucked it up again
- **testcomponent.tsx**: fucked it up a little bit
- installation process

## 0.0.3 (2023-09-13)

### Fix

- **init_db.sh**: fixed path

## 0.0.2 (2023-09-12)

### Refactor

- tidy
1 change: 1 addition & 0 deletions client-new/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-native": "^0.72.3",
"axios": "^1.6.0",
"expo": "~49.0.13",
"expo-dev-client": "^2.4.11",
"expo-secure-store": "^12.5.0",
Expand Down
2 changes: 1 addition & 1 deletion client-new/src/screens/app/HomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "react-native-responsive-screen";
import LegacyWordmark from "../../components/reusable/LegacyWordmark";
import { SvgUri } from "react-native-svg";
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
// import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unnecessary comment

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

frfr

import { NavigationContainer } from '@react-navigation/native';


Expand Down
Loading