This is the source code for the website www.mint-lang.com. Along with the API for sandbox.mint-lang.com
Written by these lovely people! ❤️
The website is a Ruby on Rails application.
To get up and running you will need:
- Ruby (2.6.6) installed
- PostgreSQL installed, including
libpq-dev
- Install Rails and Bundler
$ gem install rails bundler
- Install project dependencies
$ bundle install
You will need to:
- Create a database
rails db:create
- Migrate the database
rails db:migrate
- Start the server
rails s
Mint is designed for writing SPAs, but this website is mostly static and cacheable, therefore it makes little sense to build it as a SPA. It's all about picking the right tool for the job.