Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Shpigford committed Jan 9, 2024
1 parent a565b33 commit 6d2d60a
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@
# Ignore master key for decrypting credentials and more.
/config/master.key

# Ignore
!.env.example

# Ignore
/app/assets/builds/*
!/app/assets/builds/.keep
*NOTES*
Expand Down
63 changes: 63 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Synth: Modern fintech tools for modern businesses

Synth aims to build a modern fintech stack and data platform for modern businesses.

We're aiming to be hyper-transparent, fully open-source and community-driven.

This codebase is currently in a very early stage of development.

In addition, much of the data that is used in the app is not open-source (due to licensing restrictions). We're working on making as much of the data open-source as possible, but the reality is that some of the data will need to be licensed from third parties in order to be useful.

Where possible we'll at least provide sample data so that you can get the app working locally.

## Codebase

The codebase is vanilla [Rails](https://rubyonrails.org/) and [Postgres](https://www.postgresql.org/). Quite a simple setup.

## Setup

You'll need:

- ruby >3 (specific version is in `Gemfile`)
- postgresql (if using stock `config/database.yml`)

```shell
cd maybe
bundle install
rails db:setup
```

You can then run the rails web server:

```shell
bin/dev
```

And visit [http://localhost:3000](http://localhost:3000)

## External Services

Currently the app relies either Google or GitHub for authentication. The easiest of which to set up is GitHub.

You can find the necessary API keys in `.env.example`, which you can copy to `.env` and fill in the values.

## Contributing

It's still very early days for this so your mileage will vary here and lots of things will break.

But almost any contribution will be beneficial at this point. Check the [current Issues](https://github.com/maybe-finance/synth/issues) to see where you can jump in!

If you've got an improvement, just send in a pull request!

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

If you've got feature ideas, simply [open a new issues](https://github.com/maybe-finance/synth/issues/new)!

## Community

- Join the conversation in our [Discord](https://discord.gg/rDZFvtGcxx)
- Follow us on [Twitter](https://twitter.com/synth_finance)

0 comments on commit 6d2d60a

Please sign in to comment.