- ID:
loop - Name: Loop
- Description: Planning and kanban task orchestration agent with iterative peer-review workflow
| description | Kanban task creation standards, read this first before creating kanban task |
|---|
dependencies parameter when creating tasks that depend on others.| dist/ | |
| build/ | |
| # Rust | |
| target/ | |
| Cargo.lock | |
| *.rs.bk | |
| # Node.js | |
| node_modules/ |
| FROM node:bullseye-slim | |
| # Install cron | |
| RUN apt-get update && apt-get install -y cron && which cron && \ | |
| rm -rf /etc/cron.*/* | |
| # Install Python3 | |
| RUN apt-get install -y python3 | |
| # Install Supervisord |
| server { | |
| listen 80; | |
| server_name localhost; | |
| root /usr/share/nginx/html; | |
| location ~ /.+ { | |
| try_files $uri $uri.html $uri =404; | |
| } |
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| contract FallbackAndSelfDestructExample is Ownable { | |
| function destroy(address _addr) external onlyOwner { | |
| address payable addr = payable(address(_addr)); |