rails db:migrate
```
-4. Start the Rails server:
+4. Set up encryption
+ ```
+ rails db:encryption:init
+ EDITOR="nano" rails credentials:edit
+ ```
+
+5. Set up TOTP codes (maybe needed in PROD)
+ ```
+ rails generate migration AddConsumedTimestepToUsers consumed_timestep:integer
+ RAILS_ENV=production rails db:migrate
+ ```
+
+
+5. Start the Rails server:
```
rails server
```
Please refer to the [API Documentation](API_DOCUMENTATION.md) for detailed information on how to use the API.
-## Testing
-
-To run the test suite:
-
-```
-rails test
-```
-
## Contributing
1. Fork the repository