Skip to content

Commit c294b2e

Browse files
committed
remove old branding
1 parent c154e5c commit c294b2e

File tree

13 files changed

+39
-105
lines changed

13 files changed

+39
-105
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
# OneFraction
1+
# FullStack
22

3-
This is a platform I began building for a client. After he signed and I began building he decided to pivot and not pay me. Sometimes you get screwed in business but at least now I have a cool boilerplate to give away.
3+
This is a platform I began building for a client. After he signed and I started working he decided to pivot and not pay me. Sometimes you get screwed in business but at least now I have a cool boilerplate to give away.
44

55
[follow me on Twitter](https://twitter.com/TrillCyborg) - [follow the designer](https://twitter.com/traf)
66

7-
![onefraction.gif](https://i.imgur.com/IPbLdHy.gif)
7+
![fullstack.gif](https://i.imgur.com/jYb4YQL.gif)
88

99
## What is this?
1010

11-
OneFraction was supposed to be a platform that gave users rewards for paying their rent through the platform as opposed to check or bank transfer. The value would come from leveraging data to eventually create a rental marketplace where users can find the perfect apartment to move into.
11+
This project was supposed to be an app where users receive benefits for paying their rent through the platform as opposed to check or bank transfer. Since this repo rose to the top of _Hacker News_, _r/programming_ and _Github_ I have decided it deserves a new life. So allow me to reintroduce it as a full-stack boilerplate with my current top picks for tech I like to use on client work.
12+
13+
If you're trying to expand into some of the technologies I'm using here, star it, fork it and start playing! Feel free to find my email at the bottom of [my site](https://trxrg.com/) and reach out with any questions.
1214

1315
## Stack
1416

@@ -23,14 +25,16 @@ Accounts are set up using the wonderful `accounts.js` library.
2325

2426
### Generators
2527

26-
`type-graphql` and `graphql-codegen` are used to generate types for all my graphql resolvers to keep client and server totally and beautifully in sync.
28+
`type-graphql` and `graphql-codegen` are used to generate types for all my GraphQL resolvers to keep client and server totally and beautifully in sync.
2729

2830
## Other cool things
2931

30-
I've included a number of animations using plain CSS and `react-spring`. If you're a react developer and want to animate your work learn `react-spring`. Thank me later. This project is using Plaid to access read info for users bank accounts.
32+
I've included a number of animations using plain CSS and `react-spring`. If you're a react developer and want to animate your work learn `react-spring`. Thank me later. This project is using Plaid to access read info for users bank accounts and Google Place API for address lookup.
3133

3234
## Usage
3335

36+
To get this working right you'll need to create API keys for [Google Places](https://developers.google.com/places/web-service/intro) and [Plaid](https://plaid.com/). Then add them to the client and server config files.
37+
3438
```sh
3539
# Run mongo
3640
sudo mongod

client/app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"name": "onefraction",
3-
"displayName": "OneFraction"
2+
"name": "fullstack",
3+
"displayName": "FullStack"
44
}

client/src/assets/images/icons/rewards.svg

Lines changed: 0 additions & 23 deletions
This file was deleted.

client/src/assets/images/logo-full.svg

Lines changed: 0 additions & 25 deletions
This file was deleted.

client/src/assets/images/logo-small.svg

Lines changed: 0 additions & 16 deletions
This file was deleted.

client/src/components/MainLayout/MenuIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Wrapper = styled(TouchableOpacity)`
77
padding: 10px;
88
position: fixed;
99
right: 50px;
10-
top: 56px;
10+
top: 50px;
1111
`
1212

1313
const Icon = styled(Image)`

0 commit comments

Comments
 (0)