https://github.com/zquestz/reapersnft
Rails Reapers Backend
https://github.com/zquestz/reapersnft
Last synced: 2 months 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-14T00:07:26.000Z (over 1 year ago)
- Last Synced: 2026-04-07T22:00:10.603Z (3 months ago)
- Language: Ruby
- Size: 3.68 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- 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.