Files
vibe-kanban/backend/build.rs
Anastasiia Solop dedee0f298 feat: Implement GitHub OAuth (#72)
* implement GitHub OAuth

* fmt and clippy

* add secrets for GitHub App in workflow

* fix env vars

* use device flow for login instead of callback for better security, add email and username to posthog analytics

* cleanup

* add user details to sentry context

* fixes after rebase

* feedback fixes

* do not allow to press esc to hide github popup

* use oauth app to get user token with full repo access

* use PAT token as a backup for creating PRs

* update github signin box text

* update sign in box styling

* fmt

---------

Co-authored-by: Gabriel Gordon-Hall <ggordonhall@gmail.com>
2025-07-08 18:32:23 +01:00

33 lines
1.2 KiB
Rust

use std::{fs, path::Path};
fn main() {
dotenv::dotenv().ok();
if let Ok(api_key) = std::env::var("POSTHOG_API_KEY") {
println!("cargo:rustc-env=POSTHOG_API_KEY={}", api_key);
}
if let Ok(api_endpoint) = std::env::var("POSTHOG_API_ENDPOINT") {
println!("cargo:rustc-env=POSTHOG_API_ENDPOINT={}", api_endpoint);
}
if let Ok(api_key) = std::env::var("GITHUB_APP_ID") {
println!("cargo:rustc-env=GITHUB_APP_ID={}", api_key);
}
if let Ok(api_endpoint) = std::env::var("GITHUB_APP_CLIENT_ID") {
println!("cargo:rustc-env=GITHUB_APP_CLIENT_ID={}", api_endpoint);
}
// Create frontend/dist directory if it doesn't exist
let dist_path = Path::new("../frontend/dist");
if !dist_path.exists() {
println!("cargo:warning=Creating dummy frontend/dist directory for compilation");
fs::create_dir_all(dist_path).unwrap();
// Create a dummy index.html
let dummy_html = r#"<!DOCTYPE html>
<html><head><title>Build frontend first</title></head>
<body><h1>Please build the frontend</h1></body></html>"#;
fs::write(dist_path.join("index.html"), dummy_html).unwrap();
}
}