Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit efb9f5a

Browse files
committed
2 parents 3621d84 + 08b25d1 commit efb9f5a

File tree

6 files changed

+72
-72
lines changed

6 files changed

+72
-72
lines changed

.editorconfig

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[*.json]
2-
indent_style = tab
3-
4-
[Dockerfile]
5-
indent_style = spaces
6-
indent_size = 4
7-
8-
[*.{yml,yaml}]
9-
indent_style = spaces
10-
indent_size = 2
1+
[*.json]
2+
indent_style = tab
3+
4+
[Dockerfile]
5+
indent_style = spaces
6+
indent_size = 4
7+
8+
[*.{yml,yaml}]
9+
indent_style = spaces
10+
indent_size = 2
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>my-app</name>
4-
<comment></comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.jdt.core.javabuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
<buildCommand>
14-
<name>org.eclipse.m2e.core.maven2Builder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
18-
</buildSpec>
19-
<natures>
20-
<nature>org.eclipse.jdt.core.javanature</nature>
21-
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22-
</natures>
23-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>my-app</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*--------------------------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4-
*-------------------------------------------------------------------------------------------------------------*/
5-
6-
module mymodule {
7-
requires java.base;
8-
requires java.xml;
1+
/*--------------------------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4+
*-------------------------------------------------------------------------------------------------------------*/
5+
6+
module mymodule {
7+
requires java.base;
8+
requires java.xml;
99
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dependencies:
2-
- jupyter
3-
- numpy
4-
- matplotlib
1+
dependencies:
2+
- jupyter
3+
- numpy
4+
- matplotlib
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
version: '3'
2-
3-
services:
4-
app:
5-
build:
6-
context: ..
7-
dockerfile: .devcontainer/Dockerfile
8-
9-
volumes:
10-
- ..:/workspace
11-
# This lets you avoid setting up Git again in the container
12-
- ~/.gitconfig:/root/.gitconfig
13-
14-
# Overrides default command so things don't shut down after the process ends.
15-
command: sleep infinity
16-
17-
links:
18-
- db
19-
20-
db:
21-
image: postgres
22-
restart: always
23-
ports:
24-
- 5432:5432
25-
environment:
26-
POSTGRES_PASSWORD: LocalPassword
1+
version: '3'
2+
3+
services:
4+
app:
5+
build:
6+
context: ..
7+
dockerfile: .devcontainer/Dockerfile
8+
9+
volumes:
10+
- ..:/workspace
11+
# This lets you avoid setting up Git again in the container
12+
- ~/.gitconfig:/root/.gitconfig
13+
14+
# Overrides default command so things don't shut down after the process ends.
15+
command: sleep infinity
16+
17+
links:
18+
- db
19+
20+
db:
21+
image: postgres
22+
restart: always
23+
ports:
24+
- 5432:5432
25+
environment:
26+
POSTGRES_PASSWORD: LocalPassword
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django
1+
Django
22
psycopg2-binary

0 commit comments

Comments
 (0)