Skip to content

Commit a8ce9ad

Browse files
authored
Initial commit
0 parents  commit a8ce9ad

26 files changed

+1041
-0
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM ubuntu:20.04 AS base

.devcontainer/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# DevContainer Folder
2+
3+
> [!NOTE]
4+
> The `.devcontainer` directory contains files that are used to configure the development container for the repository.
5+
6+
The `.devcontainer` directory contains the following files:
7+
8+
- [`devcontainer.json`](./devcontainer.json): A default `devcontainer.json` file that can be used to configure the development container for the repository.
9+
10+
- [`Dockerfile`](./Dockerfile): A default `Dockerfile` file that can be used to configure the development container for the repository.
11+
12+
- [`compose.yml`](./compose.yml): A default `compose.yml` file that can be used to configure the development container for the repository.
13+
14+
- [`README.md`](./README.md): A default `README.md` file that can be used to provide information about the `.devcontainer` directory.

.devcontainer/compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
base:
3+
build:
4+
context: .
5+
dockerfile: Dockerfile
6+
image: base
7+
container_name: base
8+
# volumes:
9+
# - .:/app
10+
# working_dir: /app
11+
# command: tail -f /dev/null

.devcontainer/devcontainer.json

Whitespace-only changes.

.editorconfig

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
# Use 4 spaces for the Python files
13+
[*.py]
14+
indent_size = 4
15+
max_line_length = 80
16+
17+
# The JSON files contain newlines inconsistently
18+
[*.json]
19+
insert_final_newline = ignore
20+
21+
# Minified JavaScript files shouldn't be changed
22+
[**.min.js]
23+
indent_style = ignore
24+
insert_final_newline = ignore
25+
26+
# Makefiles always use tabs for indentation
27+
[Makefile]
28+
indent_style = tab
29+
30+
# Batch files use tabs for indentation
31+
[*.bat]
32+
indent_style = tab
33+
34+
[*.md]
35+
trim_trailing_whitespace = false
36+

0 commit comments

Comments
 (0)