diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..9ba5bd9 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,18 @@ +FROM mcr.microsoft.com/devcontainers/miniconda:0-3 + +USER vscode +WORKDIR /home/vscode + +# Configure SnowSQL +RUN mkdir .snowsql +COPY .devcontainer/config .snowsql + +# Install SnowSQL +RUN curl -O https://sfc-repo.snowflakecomputing.com/snowsql/bootstrap/1.2/linux_x86_64/snowsql-1.2.28-linux_x86_64.bash \ + && SNOWSQL_DEST=~/bin SNOWSQL_LOGIN_SHELL=~/.profile bash snowsql-1.2.28-linux_x86_64.bash + +# Create the conda environment +COPY environment.yml . +RUN conda env create \ + && conda init \ + && rm environment.yml \ No newline at end of file diff --git a/.devcontainer/config b/.devcontainer/config new file mode 100644 index 0000000..0248c69 --- /dev/null +++ b/.devcontainer/config @@ -0,0 +1,9 @@ +# SnowSQL config + +[connections.dev] +accountname = myaccount +username = myusername +password = mypassword +rolename = HOL_ROLE +warehousename = HOL_WH +dbname = HOL_DB \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..0b65f30 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,31 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/miniconda +{ + "name": "Snowflake Demo Codespace", + "build": { + "context": "..", + "dockerfile": "Dockerfile" + }, + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [] + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "conda init", + + // Configure tool-specific properties. + "customizations": { + "vscode": { + "settings": { + "python.defaultInterpreterPath": "/opt/conda/envs/snowflake-demo", + "python.terminal.activateEnvInCurrentTerminal": true + }, + "extensions": [ + "snowflake.snowflake-vsc" + ] + } + } + } \ No newline at end of file diff --git a/conda_env.yml b/environment.yml similarity index 82% rename from conda_env.yml rename to environment.yml index 70be27d..62f40db 100644 --- a/conda_env.yml +++ b/environment.yml @@ -1,9 +1,9 @@ -name: pysnowpark +name: snowflake-demo channels: - https://repo.anaconda.com/pkgs/snowflake - nodefaults dependencies: - - python=3.8 + - python=3.10 - snowflake-snowpark-python - pip - pip: