This commit is contained in:
Chuck Lantz 2019-06-13 20:59:45 +00:00
Родитель 7c6915d7cf
Коммит 08b25d12d5
6 изменённых файлов: 72 добавлений и 72 удалений

Просмотреть файл

@ -1,10 +1,10 @@
[*.json]
indent_style = tab
[Dockerfile]
indent_style = spaces
indent_size = 4
[*.{yml,yaml}]
indent_style = spaces
indent_size = 2
[*.json]
indent_style = tab
[Dockerfile]
indent_style = spaces
indent_size = 4
[*.{yml,yaml}]
indent_style = spaces
indent_size = 2

Просмотреть файл

@ -1,23 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>my-app</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>my-app</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>

Просмотреть файл

@ -1,9 +1,9 @@
/*--------------------------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
*-------------------------------------------------------------------------------------------------------------*/
module mymodule {
requires java.base;
requires java.xml;
/*--------------------------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
*-------------------------------------------------------------------------------------------------------------*/
module mymodule {
requires java.base;
requires java.xml;
}

Просмотреть файл

@ -1,4 +1,4 @@
dependencies:
- jupyter
- numpy
- matplotlib
dependencies:
- jupyter
- numpy
- matplotlib

Просмотреть файл

@ -1,26 +1,26 @@
version: '3'
services:
app:
build:
context: ..
dockerfile: .devcontainer/Dockerfile
volumes:
- ..:/workspace
# This lets you avoid setting up Git again in the container
- ~/.gitconfig:/root/.gitconfig
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
links:
- db
db:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: LocalPassword
version: '3'
services:
app:
build:
context: ..
dockerfile: .devcontainer/Dockerfile
volumes:
- ..:/workspace
# This lets you avoid setting up Git again in the container
- ~/.gitconfig:/root/.gitconfig
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
links:
- db
db:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: LocalPassword

Просмотреть файл

@ -1,2 +1,2 @@
Django
Django
psycopg2-binary