Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zquestz/reapersnft
Rails Reapers Backend
https://github.com/zquestz/reapersnft
Last synced: about 1 month ago
JSON representation
Rails Reapers Backend
- Host: GitHub
- URL: https://github.com/zquestz/reapersnft
- Owner: zquestz
- License: mit
- Created: 2023-02-19T01:21:14.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-14T00:07:26.000Z (about 2 months ago)
- Last Synced: 2024-11-14T01:19:08.868Z (about 2 months ago)
- Language: Ruby
- Size: 3.68 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReapersNFT
## Local Development Setup
- `gem install bundler`
- `gem install rails`
- `bundle install`
- `rake` to run all tests.
- `bundle exec rake rubocop` to see rubocop offenses.
- `rails db:reset db:migrate` will reset database and reload current schema.
- `rails db:drop db:create db:migrate` will destroy the database and recreate the schema.
- `rails assets:precompile` to precompile assets.
- `rails s` to start the server. The site will be available at `localhost:3000`.
- `bundle exec rake docker:build` to build docker image for production.
- `docker-compose up` to run production image. The site will be available at `localhost:9001`.## Database
- In development and test environments, we use sqlite3. In production, we use postgres.