feat: init gitpod config (#42)

* feat: init gitpod config

* feat: add sample.env and ignore .env files

* fix: .gitpod.yml filename
This commit is contained in:
Kristofer Koishigawa 2024-02-14 23:24:07 +09:00 committed by GitHub
parent 0264c77d98
commit 666dc973cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 19 additions and 3 deletions

2
.gitattributes vendored
View file

@ -1,2 +0,0 @@
# Tell Linguist to exclude HTML files to help Replit language detection.
*.html linguist-vendored

1
.gitignore vendored
View file

@ -1 +1,2 @@
node_modules
.env

14
.gitpod.yml Normal file
View file

@ -0,0 +1,14 @@
image: gitpod/workspace-node-lts
ports:
- port: 3000
onOpen: open-preview
visibility: public
tasks:
- init: npm install
command: npm run start
vscode:
extensions:
- https://github.com/freeCodeCamp/freecodecamp-dark-vscode-theme/releases/download/v1.0.0/freecodecamp-dark-vscode-theme-1.0.0.vsix

View file

@ -1 +0,0 @@
.replit

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"workbench.colorTheme": "freeCodeCamp Dark Theme"
}

1
sample.env Normal file
View file

@ -0,0 +1 @@
PORT=3000