template for NFT creators who only need a minting portal. this is a simple, no-code solution with an interface for plugging in contract details and a background image.
if you are a non-developer wanting to launch your own minting website:
- deploy your smart contract and upload image/json assets (if applicable) to IPFS.
- click the "Deploy to Heroku" button below, create a password for your admin account, and provide your smart contract details
- your site will work immediately - set up a custom domain (optional) for free inside your heroku.com dashboard
for more details on each step above, go here (INSERT).
bundle
rails g rename:into your_site_name
(removerename
gem afterwards)rails db:setup && rails db:migrate
cp config/application-sample.yml config/application.yml
rm -rf .git && git init && git add . && git commit -m 'first commit'
bin/dev # uses foreman to boot server, frontend, and bg job queue
rspec # run all tests inside spec/
rspec spec/dir_name # run all tests inside given directory
heroku git:remote -a heroku_app_name_here # you only need to do this once
git push heroku master # deploys master branch
git push heroku some_branch_name:master # deploys non-master branch