Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 710 Bytes

File metadata and controls

34 lines (24 loc) · 710 Bytes

Interview task

This is a basic Rails application which was created using a "Getting started" Rails tutorial for version 7.0.3.

Please install it and make sure that it runs. You can install any additional Ruby gems or JavaScript libraries if you need to.

Installation

Requirements:

  • Ruby v3.1.2
  • Node v16+
  • SQLite3
# Clone this repository
$ git clone <this repository>
$ cd interview_task

# Set up gems and node libraries
$ bundle install
$ npm install

# Set up a database
$ bin/rails db:reset

# Run asset watching and building in the separate console
$ bin/front

# Run the server and access it on http://localhost:3000
$ rails s