Files
flagship/README.md
2025-06-11 18:08:24 +02:00

355 B

Get up and running

  1. Clone the repo
  2. bundle install
  3. install any other dependencies you're missing or prompted for
  4. rails db:create
  5. if you don't have permissions
$ sudo -u postgres createuser <username>
$ psql -U postgres
postgres=# ALTER USER <username> CREATEDB;
  1. rails db:migrate
  2. rails server
  3. Open localhost:3000