Skip to content

Commit

Permalink
Rework
Browse files Browse the repository at this point in the history
  • Loading branch information
DvorakDwarf committed Mar 5, 2023
0 parents commit a4e5e24
Show file tree
Hide file tree
Showing 25 changed files with 3,863 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ARG VARIANT="1"
FROM mcr.microsoft.com/devcontainers/rust:${VARIANT}

RUN apt update && apt install -y ffmpeg libopencv-dev clang libclang-dev
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Rust",
"build": {
"context": "..",
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "1",
"NODE_VERSION": "none"
}
},
"postCreateCommand": "cargo build",
"remoteUser": "vscode"
}
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/target
/dump
/src/out
/output.avi
/setting_tests
/output.txt
/yt-dlp
/test.mp4
/src/demo
/src/tests/demo.zip
/.DS_Store
/src/.DS_Store
/test2.mp4
/output.zip
/output.png
/cargo_home/**
Loading

0 comments on commit a4e5e24

Please sign in to comment.