generated from cailloufanboy4345/Chocolate-Online
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 06d3a20
Showing
285 changed files
with
257,915 additions
and
0 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,78 @@ | ||
# This workflow will build and push a node.js application to an Azure Web App when a commit is pushed to your default branch. | ||
# | ||
# This workflow assumes you have already created the target Azure App Service web app. | ||
# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-cli | ||
# | ||
# To configure this workflow: | ||
# | ||
# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal. | ||
# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials | ||
# | ||
# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret. | ||
# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret | ||
# | ||
# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables below. | ||
# | ||
# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions | ||
# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | ||
# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
workflow_dispatch: | ||
|
||
env: | ||
AZURE_WEBAPP_NAME: your-app-name # set this to your application's name | ||
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root | ||
NODE_VERSION: '14.x' # set this to the node version to use | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
cache: 'npm' | ||
|
||
- name: npm install, build, and test | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
npm run test --if-present | ||
- name: Upload artifact for deployment job | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: node-app | ||
path: . | ||
|
||
deploy: | ||
permissions: | ||
contents: none | ||
runs-on: ubuntu-latest | ||
needs: build | ||
environment: | ||
name: 'Development' | ||
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | ||
|
||
steps: | ||
- name: Download artifact from build job | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: node-app | ||
|
||
- name: 'Deploy to Azure WebApp' | ||
id: deploy-to-webapp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: ${{ env.AZURE_WEBAPP_NAME }} | ||
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} | ||
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} |
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,7 @@ | ||
node_modules/*/node_modules | ||
node_modules/* | ||
_CACHÉ/* | ||
_SAVED/* | ||
!node_modules/node-zip | ||
!_*/_NO_REMÖVE | ||
.DS_Store |
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,13 @@ | ||
{ | ||
"Server Thingy": { | ||
"scope": "javascript,typescript", | ||
"prefix": "xxx", | ||
"body": [ | ||
"module.exports = function (req, res, url) {", | ||
"if (req.method != '$1' || url.path != '$2') return;", | ||
"return true;", | ||
"}" | ||
], | ||
"description": "Log output to console" | ||
} | ||
} |
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,17 @@ | ||
{ | ||
// Use IntelliSense para saber los atributos posibles. | ||
// Mantenga el puntero para ver las descripciones de los existentes atributos. | ||
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Iniciar programa", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}\\main.js" | ||
} | ||
] | ||
} |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Wrapper Online | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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 @@ | ||
worker: npm start |
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,2 @@ | ||
# Chocolate Online | ||
an goanimators website to thoose who want the safe verison of chocolate online. |
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 @@ | ||
dontremovethis |
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,189 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<theme id="action" name="Lil' Peepz" cc_theme_id="cc2"> | ||
<background id="ncc_medium.swf" name="Medium Horizoon" enable="Y" default="N" is_premium="N" aid="10712" money="0" sharing="0"/> | ||
<background id="ncc_low.swf" name="Low Horizoon" enable="Y" default="N" is_premium="N" aid="10800" money="0" sharing="0"/> | ||
<compositebg id="cbg_living_rm01" name="Living room" enable="Y" default="N" thumb="living_rm01.jpg" display_order="0" is_premium="N" money="0" sharing="0" aid="10713"> | ||
<bg id="cbg_living_rm01_BG43" index="0"> | ||
<file>action.ncc_medium.swf</file> | ||
<color r="colorA">13295579</color> | ||
<color r="colorB">8618916</color> | ||
</bg> | ||
<prop id="cbg_living_rm01_PROP362" index="3"> | ||
<file>action.backdrop.swf</file> | ||
<x>425</x> | ||
<y>112</y> | ||
<xscale>0.4</xscale> | ||
<yscale>0.39</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP363" index="4"> | ||
<file>action.window_display.swf</file> | ||
<x>370.6</x> | ||
<y>69</y> | ||
<xscale>1.19</xscale> | ||
<yscale>1.19</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP364" index="5"> | ||
<file>action.window_display.swf</file> | ||
<x>489.4</x> | ||
<y>69</y> | ||
<xscale>1.19</xscale> | ||
<yscale>1.19</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP365" index="6"> | ||
<file>action.msp_door01.msp_door01_door01_front_close.swf</file> | ||
<x>117</x> | ||
<y>132</y> | ||
<xscale>0.86</xscale> | ||
<yscale>0.86</yscale> | ||
<face>-1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">7292976</color> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP366" index="1"> | ||
<file>action.msp_pic01.msp_pic01_pic_front.swf</file> | ||
<x>250</x> | ||
<y>86</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">16777215</color> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP367" index="7"> | ||
<file>action.carpet.swf</file> | ||
<x>332</x> | ||
<y>302</y> | ||
<xscale>1.67</xscale> | ||
<yscale>1.48</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">12768730</color> | ||
<color r="ccColorB">10053171</color> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP368" index="8"> | ||
<file>action.msp_sofa02.msp_sofa02_sofa02_front.swf</file> | ||
<x>397</x> | ||
<y>207.5</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">10066278</color> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP369" index="9"> | ||
<file>action.lamp_floor.swf</file> | ||
<x>568</x> | ||
<y>146</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">16777164</color> | ||
<color r="ccColorB">6697728</color> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP370" index="10"> | ||
<file>action.msp_shelves03.msp_shelves03_bookshelves_front.swf</file> | ||
<x>212</x> | ||
<y>347</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
<prop id="cbg_living_rm01_PROP371" index="11"> | ||
<file>action.msp_old_tv.msp_old_tv_old_tv_back.swf</file> | ||
<x>213.1</x> | ||
<y>268</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
</compositebg> | ||
<compositebg id="cbg_street01" name="Street" enable="Y" default="Y" thumb="street01.jpg" display_order="0" is_premium="N" money="0" sharing="0" aid="10801"> | ||
<bg id="cbg_street01_BG3" index="0"> | ||
<file>action.ncc_low.swf</file> | ||
<color r="colorB">3290175</color> | ||
<color r="colorA">9672351</color> | ||
</bg> | ||
<prop id="cbg_street01_PROP0" index="2"> | ||
<file>action.msp_vending_drink.msp_vending_drink_vending_drink.swf</file> | ||
<x>80</x> | ||
<y>184</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">5995069</color> | ||
</prop> | ||
<prop id="cbg_street01_PROP3" index="3"> | ||
<file>action.msp_vending_drink.msp_vending_drink_vending_drink.swf</file> | ||
<x>225</x> | ||
<y>184</y> | ||
<xscale>1</xscale> | ||
<yscale>1</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">9319733</color> | ||
</prop> | ||
<prop id="cbg_street01_PROP2" index="4"> | ||
<file>action.bench01.swf</file> | ||
<x>432</x> | ||
<y>247</y> | ||
<xscale>0.85</xscale> | ||
<yscale>0.85</yscale> | ||
<face>1</face> | ||
<rotation>0</rotation> | ||
<color r="ccColorA">6710886</color> | ||
</prop> | ||
<prop id="cbg_street01_PROP8" index="5"> | ||
<file>action.street_lamp.swf</file> | ||
<x>566</x> | ||
<y>177</y> | ||
<xscale>1.7</xscale> | ||
<yscale>1.77</yscale> | ||
<face>-1</face> | ||
<rotation>0</rotation> | ||
</prop> | ||
</compositebg> | ||
<prop id="vending_drink.swf" name="Drinks vending machine" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10797" money="0" sharing="0"/> | ||
<prop id="bench01.swf" name="Bench" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10798" money="0" sharing="0"/> | ||
<prop id="street_lamp.swf" name="Street lamp" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10799" money="0" sharing="0"/> | ||
<prop id="backdrop.swf" name="City backdrop" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10690" money="0" sharing="0"/> | ||
<prop id="window_display.swf" name="Window" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10691" money="0" sharing="0"/> | ||
<prop id="msp_door01" name="Door" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_door01_door01_front_close.swf" enable="Y" is_premium="N" aid="10692" money="0" sharing="0"> | ||
<state id="msp_door01_door01_front_close.swf" name="front closed" enable="Y" default="Y"/> | ||
<state id="msp_door01_door01_front_open.swf" name="front open" enable="Y"/> | ||
</prop> | ||
<prop id="msp_pic01" name="Picture" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_pic01_pic_front.swf" enable="Y" is_premium="N" aid="10695" money="0" sharing="0"> | ||
<state id="msp_pic01_pic_front.swf" name="front" enable="Y" default="Y"/> | ||
<state id="msp_pic01_pic_side.swf" name="side" enable="Y"/> | ||
</prop> | ||
<prop id="msp_sofa02" name="sofa" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_sofa02_sofa02_front.swf" enable="Y" is_premium="N" aid="10698" money="0" sharing="0"> | ||
<state id="msp_sofa02_sofa02_front.swf" name="front" enable="Y" default="Y"/> | ||
<state id="msp_sofa02_sofa02_side.swf" name="side" enable="Y"/> | ||
</prop> | ||
<prop id="lamp_floor.swf" name="Lamp (floor)" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10701" money="0" sharing="0"/> | ||
<prop id="msp_shelves03" name="Bookshelves" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_shelves03_bookshelves_front.swf" enable="Y" is_premium="N" aid="10702" money="0" sharing="0"> | ||
<state id="msp_shelves03_bookshelves_front.swf" name="front" enable="Y" default="Y"/> | ||
<state id="msp_shelves03_bookshelves_side.swf" name="side" enable="Y"/> | ||
</prop> | ||
<prop id="msp_old_tv" name="Old TV" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_old_tv_old_tv_front.swf" enable="Y" is_premium="N" aid="10705" money="0" sharing="0"> | ||
<state id="msp_old_tv_old_tv_front.swf" name="front" enable="Y" default="Y"/> | ||
<state id="msp_old_tv_old_tv_front_non.swf" name="front transparent" enable="Y"/> | ||
<state id="msp_old_tv_old_tv_back.swf" name="back" enable="Y"/> | ||
<state id="msp_old_tv_old_tv_side.swf" name="side" enable="Y"/> | ||
<state id="msp_old_tv_old_tv_side_back.swf" name="side back" enable="Y"/> | ||
</prop> | ||
<prop id="carpet.swf" name="Carpet" holdable="0" placeable="1" wearable="0" facing="left" thumb="" enable="Y" is_premium="N" aid="10711" money="0" sharing="0"/> | ||
<prop id="msp_vending_drink" name="Vending machine" holdable="0" placeable="1" wearable="0" facing="left" thumb="msp_vending_drink_vending_drink.swf" enable="Y" is_premium="N" aid="12172" money="0" sharing="0"> | ||
<state id="msp_vending_drink_vending_drink.swf" name="front" enable="Y" default="Y"/> | ||
<state id="msp_vending_drink_ncc_vending_drink_side.swf" name="side" enable="Y"/> | ||
</prop> | ||
</theme> |
Oops, something went wrong.