mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-12-08 00:44:30 +01:00
chore: add Gitpod
This commit is contained in:
parent
9764867eca
commit
b0a608c1fa
19
.gitignore
vendored
19
.gitignore
vendored
@ -26,10 +26,21 @@ coverage
|
|||||||
# debug
|
# debug
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
|
|
||||||
# editors
|
# IDEs and editors
|
||||||
.vscode
|
/.idea
|
||||||
.theia
|
.project
|
||||||
.idea
|
.classpath
|
||||||
|
.c9/
|
||||||
|
*.launch
|
||||||
|
.settings/
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# IDE - VSCode
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
17
.gitpod.yml
Normal file
17
.gitpod.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
image: 'gitpod/workspace-full'
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: 'docker-daemon'
|
||||||
|
before: 'cp .env.example .env && npm install --global npm@7 && npm install'
|
||||||
|
init: 'sudo docker-up'
|
||||||
|
- name: 'docker-container'
|
||||||
|
before: 'echo "Waiting for docker daemon to start" &&
|
||||||
|
until docker info &> /dev/null; do sleep 1; done;'
|
||||||
|
init: 'docker-compose up'
|
||||||
|
|
||||||
|
ports:
|
||||||
|
- port: 3000
|
||||||
|
onOpen: 'open-preview'
|
||||||
|
|
||||||
|
- port: 1080
|
||||||
|
onOpen: 'notify'
|
12
.vscode/extensions.json
vendored
Normal file
12
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"divlo.vscode-styled-jsx-syntax",
|
||||||
|
"divlo.vscode-styled-jsx-languageserver",
|
||||||
|
"standard.vscode-standard",
|
||||||
|
"mikestead.dotenv",
|
||||||
|
"editorconfig.editorconfig",
|
||||||
|
"coenraads.bracket-pair-colorizer",
|
||||||
|
"davidanson.vscode-markdownlint",
|
||||||
|
"syler.sass-indented"
|
||||||
|
]
|
||||||
|
}
|
8
.vscode/settings.json
vendored
Normal file
8
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"standard.enable": true,
|
||||||
|
"standard.engine": "ts-standard",
|
||||||
|
"standard.treatErrorsAsWarnings": true,
|
||||||
|
"standard.usePackageJson": true,
|
||||||
|
"standard.autoFixOnSave": true,
|
||||||
|
"typescript.tsdk": "node_modules/typescript/lib"
|
||||||
|
}
|
@ -47,6 +47,8 @@ Scopes define what part of the code changed.
|
|||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Divlo/Divlo)
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
Loading…
Reference in New Issue
Block a user