Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/condef5/kampu
https://github.com/condef5/kampu
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/condef5/kampu
- Owner: condef5
- License: mit
- Created: 2019-08-13T04:02:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T20:39:58.000Z (almost 3 years ago)
- Last Synced: 2024-10-10T10:20:58.329Z (27 days ago)
- Language: JavaScript
- Size: 7.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kampu
An app to book your favorite sports fields
## Setup
The stack in this project is Rails + React.
We have `api` and `client`.
To setup the api:
First use `bundle` to install all the gems for the rails project
bundle install
Then you should setup the database with
rails db:setup
And finally, you should run it on a specific port. e.g. `4000`
rails s -p 4000
To setup the client:
First use `yarn` to install all the package dependencies for the react project
yarn install
And finally, you should run it, and by default it starts on the port `3000`
yarn start