-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #631 from dictu-lang/develop
Release 0.28.0
- Loading branch information
Showing
82 changed files
with
3,823 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:latest | ||
|
||
RUN adduser vscode && \ | ||
mkdir -p /etc/sudoers.d && \ | ||
echo vscode ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/vscode && \ | ||
chmod 0440 /etc/sudoers.d/vscode | ||
|
||
WORKDIR Dictu | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt update && apt upgrade -y && \ | ||
apt install -y --no-install-recommends \ | ||
build-essential \ | ||
git \ | ||
cmake \ | ||
libcurl4-gnutls-dev \ | ||
uuid-dev \ | ||
ca-certificates && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN git clone https://github.com/dictu-lang/Dictu.git | ||
|
||
USER root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "Dictu", | ||
"dockerFile": "Dockerfile", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": "..", | ||
"args": {} | ||
}, | ||
"hostRequirements": { | ||
"cpus": 1, | ||
"memory": "512mb", | ||
"storage": "1gb" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"files.exclude": { | ||
"**/LICENSE": true, | ||
"**/CODE_OF_CONDUCT.md": true | ||
} | ||
}, | ||
"extensions": [ | ||
"vscode-icons-team.vscode-icons", | ||
"visualstudioexptteam.vscodeintellicode" | ||
] | ||
} | ||
}, | ||
"remoteUser": "vscode" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,26 @@ | ||
<!---- This is the PR Template !--> | ||
|
||
<!-- Make sure to follow each step so that your PR is explained and easy to read !--> | ||
|
||
<!-- This will allow maintainers and other potential contributors to understand the changes being carried out !--> | ||
|
||
<!--- Thanks for considering that !--> | ||
|
||
### Well detailed description of the change : | ||
|
||
<!-- Explain what you have done !--> | ||
|
||
|
||
|
||
<!-- Link the issue below if you are resolving an issue !--> | ||
# <Title> | ||
|
||
Resolves: # | ||
|
||
# | ||
|
||
### Type of change: | ||
|
||
<!-- Please select relevant options --> | ||
### What's Changed: | ||
|
||
<!-- Add an x in [ ] if true !--> | ||
|
||
<!-- Delete options that aren't relevant!--> | ||
# | ||
|
||
### Type of Change: | ||
|
||
- [ ] Bug fix | ||
|
||
- [ ] New feature | ||
|
||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
|
||
# | ||
|
||
### Housekeeping | ||
### Housekeeping: | ||
|
||
<!-- If adding a new test file, remember to include it in the relevant import file --> | ||
- [ ] Tests have been updated to reflect the changes done within this PR (if applicable). | ||
|
||
- [ ] Documentation has been updated to reflect the changes done within this PR (if applicable). | ||
|
||
# | ||
|
||
### Preview (Screenshots) : | ||
|
||
<!-- If applicable attempt to explain the screenshots !--> | ||
### Screenshots (If Applicable): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,5 @@ dictu.pdb | |
test1.du | ||
\.vscode/ | ||
/.env | ||
/vcpkg_installed | ||
/Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 21, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "debug", | ||
"displayName": "Debug configuration", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
}, | ||
"binaryDir": "${sourceDir}/build" | ||
}, | ||
{ | ||
"name": "release", | ||
"displayName": "Release configuration", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
}, | ||
"binaryDir": "${sourceDir}/build" | ||
}, | ||
{ | ||
"name": "release-nohttp", | ||
"displayName": "Release configuration", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"DISABLE_HTTP": true | ||
}, | ||
"binaryDir": "${sourceDir}/build" | ||
}, | ||
{ | ||
"name": "release-vcpkg", | ||
"displayName": "Release configuration", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"ENABLE_VCPKG": true | ||
}, | ||
"binaryDir": "${sourceDir}/build", | ||
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "release", | ||
"jobs": 4, | ||
"cleanFirst": true, | ||
"configurePreset": "release", | ||
"configuration": "release" | ||
}, | ||
{ | ||
"name": "debug", | ||
"jobs": 4, | ||
"cleanFirst": true, | ||
"configurePreset": "debug", | ||
"configuration": "debug" | ||
}, | ||
{ | ||
"name": "release-vcpkg", | ||
"jobs": 4, | ||
"cleanFirst": true, | ||
"configurePreset": "release-vcpkg", | ||
"configuration": "release" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.