Skip to content

Instantly share code, notes, and snippets.

@benwis
Created August 20, 2021 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benwis/172231ce99eb1c82c6e866f9bfcc472e to your computer and use it in GitHub Desktop.
Save benwis/172231ce99eb1c82c6e866f9bfcc472e to your computer and use it in GitHub Desktop.
Flyctl Deploy Failure Directory Structure
.
├── Cargo.lock
├── Cargo.toml
├── Dockerfile
├── Dockerfile-cache
├── README.md
├── configuration
│   ├── base.yml
│   ├── local.yml
│   ├── production.yml
│   └── test.yml
├── email
│   ├── Cargo.toml
│   └── src
│   ├── domain.rs
│   ├── errors.rs
│   └── lib.rs
├── fly.toml
├── migrations
│   ├── 20210728195138_functions.sql
│   ├── 20210728195200_tenants.sql
│   ├── 20210728195205_users.sql
│   ├── 20210728195209_teams.sql
│   ├── 20210728195216_user_team.sql
│   ├── 20210728195222_tokens.sql
│   └── 20210728200243_taxes.sql
├── sqlx-data.json
└── vidette
├── Cargo.toml
├── scripts
│   └── init_db.sh
├── src
│   ├── auth
│   │   ├── handler.rs
│   │   ├── hash.rs
│   │   ├── lib.rs
│   │   └── token.rs
│   ├── auth.rs
│   ├── configuration.rs
│   ├── db.rs
│   ├── db_models.rs
│   ├── email_helpers.rs
│   ├── errors.rs
│   ├── gql_models.rs
│   ├── lib.rs
│   ├── main.rs
│   ├── model.rs
│   ├── routes
│   │   ├── health_check.rs
│   │   └── mod.rs
│   └── startup.rs
└── tests
└── api
├── health_check.rs
├── helpers.rs
├── main.rs
├── mutations
│   ├── invite.rs
│   ├── login.rs
│   ├── logout.rs
│   ├── mod.rs
│   ├── password_reset.rs
│   ├── signup.rs
│   └── team.rs
└── query_tests.rs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment