Skip to content

Commit

Permalink
migrate back to go server and move ui to different project
Browse files Browse the repository at this point in the history
  • Loading branch information
PaluMacil committed Jul 9, 2018
1 parent a5400e5 commit 8871aed
Show file tree
Hide file tree
Showing 186 changed files with 1,044 additions and 39,008 deletions.
26 changes: 13 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
*.csproj.user
/.vs
bin/
obj/

# See http://help.github.com/ignore-files/ for more about ignoring files.
# data
*.db
*.db.lock
data-test/
data/

# compiled output
dist/
dist-server/
tmp/
out-tsc/
/dist
/tmp
/out-tsc
debug
debug.test

# dependencies
node_modules/
/node_modules
/vendor

# IDEs and editors
/.idea
Expand All @@ -36,7 +37,6 @@ node_modules/
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

Expand All @@ -46,4 +46,4 @@ testem.log

# System Files
.DS_Store
Thumbs.db
Thumbs.db
55 changes: 15 additions & 40 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,21 @@
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"name": "Launch",
"type": "go",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/web/bin/Debug/netcoreapp2.0/web.dll",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}",
"env": {},
"args": [],
"cwd": "${workspaceFolder}/web",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
"showLog": true
}
,]
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"go.lintTool": "gometalinter",
"go.lintFlags": [
"--exclude=\"\bexported \\w+ (\\S*['.]*)([a-zA-Z'.*]*) should have comment or be unexported\b\""
],
"cSpell.words": [
"dgraph",
"tmpl"
]
}
15 changes: 0 additions & 15 deletions .vscode/tasks.json

This file was deleted.

24 changes: 0 additions & 24 deletions Cli/Cli.csproj

This file was deleted.

16 changes: 0 additions & 16 deletions Cli/Commands/ICommand.cs

This file was deleted.

86 changes: 0 additions & 86 deletions Cli/Commands/ListCommand.cs

This file was deleted.

18 changes: 0 additions & 18 deletions Cli/Helpers.cs

This file was deleted.

65 changes: 0 additions & 65 deletions Cli/Program.cs

This file was deleted.

15 changes: 0 additions & 15 deletions Cli/README.md

This file was deleted.

12 changes: 0 additions & 12 deletions Data/Data.csproj

This file was deleted.

Loading

0 comments on commit 8871aed

Please sign in to comment.