| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { MultipleCodeBlock } from 'ui-patterns/MultipleCodeBlock'
- import type { StepContentProps } from '@/components/interfaces/ConnectSheet/Connect.types'
- const ContentFile = ({ projectKeys }: StepContentProps) => {
- const files = [
- {
- name: '.env',
- language: 'bash',
- code: `
- BRIVEN_URL=${projectKeys.apiUrl ?? 'your-project-url'}
- BRIVEN_KEY=${projectKeys.publishableKey ?? projectKeys.anonKey ?? 'your-anon-key'}
- `,
- },
- {
- name: 'app.py',
- language: 'python',
- code: `
- import os
- from flask import Flask
- from briven import create_client, Client
- from dotenv import load_dotenv
- load_dotenv()
- app = Flask(__name__)
- briven: Client = create_client(
- os.environ.get("BRIVEN_URL"),
- os.environ.get("BRIVEN_KEY")
- )
- @app.route('/')
- def index():
- response = briven.table('todos').select("*").execute()
- todos = response.data
- html = '<h1>Todos</h1><ul>'
- for todo in todos:
- html += f'<li>{todo["name"]}</li>'
- html += '</ul>'
- return html
- if __name__ == '__main__':
- app.run(debug=True)
- `,
- },
- ]
- return <MultipleCodeBlock files={files} />
- }
- export default ContentFile
|