From 1a2a535f076dfea5a74fa995863fe0ff7bbeb581 Mon Sep 17 00:00:00 2001 From: Eric O Date: Thu, 13 Jun 2024 12:10:20 -0400 Subject: [PATCH] README updates --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9b1c955..324edaa 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ DLST app for performing fixity checks on cloud storage files. +## Development **First-Time Setup (for developers)** Clone the repository. @@ -16,8 +17,15 @@ Set up config files. Run database migrations. `bundle exec rake db:migrate` -Seed the database with necessary values for operation. -`rails db:seed` +Start the application using `bundle exec rails server`. +`bundle exec rails s -p 3000` -Start the application using `rails server`. -`rails s -p 3000` +## Testing + +Run: `bundle exec rspec` + +## Deployment + +Run: `bundle exec cap [env] deploy` + +NOTE: We only have a `dev` environment deploy target at this time.