Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions lisotti-sauco/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
21 changes: 21 additions & 0 deletions lisotti-sauco/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Lisotti-Sauco

## Project setup
```
npm install
```
OR
```
npm i
```

### Compiles
```
npm run serve
```

### Instructions
After fork/clone the repo, you need to place on the folder, run the project setup command
then you nedd to install all dependencies running the compile command.

Then, the app starts to listen and serve on port 8081. You don't need an user or password because that inputs are only used to set a token.
5 changes: 5 additions & 0 deletions lisotti-sauco/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
Loading