https://github.com/cuchi/bettings
A simple bettings CRUD system to showcase some tools & libraries
https://github.com/cuchi/bettings
Last synced: 3 months ago
JSON representation
A simple bettings CRUD system to showcase some tools & libraries
- Host: GitHub
- URL: https://github.com/cuchi/bettings
- Owner: cuchi
- Created: 2018-07-13T14:31:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-30T00:37:22.000Z (almost 8 years ago)
- Last Synced: 2025-01-28T11:48:29.801Z (over 1 year ago)
- Language: TypeScript
- Size: 273 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bettings
This is a bettings system I made to evaluate the real world usage of the
Node.Js + TS + Express + PostgreSQL stack.
## Prerequisites
- **Yarn** or **NPM**
- **Docker** with **docker-compose** or a **PostgreSQL** server you can access.
- **Sqitch** is required to run the migrations too, but you can also
copy-and-paste the files in `migrations/deploy`, if you wish to do it manually.
Just run it, just do:
```bash
yarn
docker-compose up -d
(cd migrations && sqitch deploy)
yarn dev
```