💫 Welcome! 🎉
This backend exercise involves building a Node.js/Express.js app that will serve a REST API. We imagine you should spend around 3 hours at implement this feature.
All models are defined in src/model.js
| "use client"; | |
| import { animate } from "motion/react"; | |
| import { memo, useCallback, useEffect, useRef } from "react"; | |
| import { cn } from "#/app/_lib/utils"; | |
| interface GlowingEffectProps { | |
| blur?: number; | |
| inactiveZone?: number; |
| Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: | |
| + create | |
| ~ update in-place | |
| - destroy | |
| Terraform will perform the following actions: | |
| # module.ecs_events.aws_cloudwatch_event_target.ecs_events_deployment_logs will be created | |
| + resource "aws_cloudwatch_event_target" "ecs_events_deployment_logs" { | |
| + arn = (known after apply) |
I hereby claim:
To claim this, I am signing this object:
| const puppeteer = require('puppeteer'); | |
| const users = require('./users.json'); | |
| (async () => { | |
| const browser = await puppeteer.launch(); | |
| const page = await browser.newPage(); | |
| await page.goto('https://<pfsense-address>'); | |
| await page.type('#usernamefld', 'admin'); |