feat: Add .env file to gitignore and update dependencies

The commit adds the `.env` file to the `.gitignore` and updates the dependencies in the `Cargo.toml` and `Cargo.lock` files. This change ensures that sensitive environment variables are not committed to the repository and keeps the dependencies up to date.
This commit is contained in:
aprilthepink 2024-06-17 19:52:51 +02:00
parent 1174f92915
commit 15bba70d2a
12 changed files with 58 additions and 11 deletions

View file

@ -1,6 +1,8 @@
use sea_orm_migration::prelude::*;
use dotenv::dotenv;
#[async_std::main]
async fn main() {
dotenv().ok();
cli::run_cli(migration::Migrator).await;
}