From 3732fbe9262bbf4ee8a4bffe5ad9efc9d13fe0f8 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Sat, 3 Feb 2024 14:46:11 -0600 Subject: [PATCH] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7adae790..4874f2fe 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,15 @@ You'll need: - ruby >3 (specific version is in `Gemfile`) - postgresql (if using stock `config/database.yml`) -For convenience, the project contains configuration for a devcontainer. Open up the project in your editor that supports devcontainers and run the commands mentioned below. +If you prefer devcontainer, this project supports it (entirely optional). + +Run the following commands after cloning the repo: ```shell cd maybe +cp .env.example .env bundle install rails db:setup -``` - -You can then run the rails web server: - -```shell bin/dev ```