Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/citahub/cyton-dapps
DApps Browser for CITA Cyton Wallet
https://github.com/citahub/cyton-dapps
Last synced: about 1 month ago
JSON representation
DApps Browser for CITA Cyton Wallet
- Host: GitHub
- URL: https://github.com/citahub/cyton-dapps
- Owner: citahub
- License: mit
- Created: 2018-05-04T04:05:03.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-19T11:16:54.000Z (almost 2 years ago)
- Last Synced: 2023-02-26T10:53:29.977Z (almost 2 years ago)
- Language: Ruby
- Homepage:
- Size: 2.75 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CITA Dapps
## Docker
We recommend that you use [Docker 🐳](https://docs.docker.com/install) if you just want to run this project.
Remember to run `rails secret` to generate secret key and write it to .env.local(read .env for more info).
⚠️ IMPORTANT: your database data will save at docker/data
App will run at http://localhost:8080.
```shell
$ make setup # run this when you first run this app
$ make up # this command will run docker daemon.
$ make update # when you update the app.
```Refer to `Makefile` for more info.
## Initialize Project
```shell
touch .env.local # Configure you database username, password, etc.bundle
yarn install
rails db:create
rails db:migrate
rails db:seed
```## Run Tests
```shell
rails test
```## Run Project
```shell
rails s
rails s -b 0.0.0.0
./bin/webpack-dev-server
```## Deploy
```shell
mina dev deploy
mina dev puma:start
```