Skip to content

Commit 5af73ab

Browse files
committed
0.1.0 release content
1 parent bda13bc commit 5af73ab

41 files changed

Lines changed: 7237 additions & 90 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,3 +160,6 @@ cython_debug/
160160
# and can be added to the global gitignore or merged into this file. For a more nuclear
161161
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162162
.idea/
163+
164+
node_modules/
165+

README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div align="center">
22
<img width="60px" src="https://pts-project.org/android-chrome-512x512.png">
3-
<h1>[Repository name]</h1>
3+
<h1>Vue.js Pirogue Admin Client</h1>
44
<p>
5-
This repository contains the source code of [description].
5+
Standalone PiRogue Admin Client Vue component to administrate a PiRogue
66
</p>
77
<p>
88
License: GPLv3
@@ -14,21 +14,20 @@ License: GPLv3
1414
</p>
1515
</div>
1616

17+
## Project Setup
1718

18-
## How to use this template
19+
```sh
20+
npm install
21+
```
1922

20-
1. Delete all unnecessary folders and files depending on the type of project.
23+
### Compile and Hot-Reload for Development
2124

22-
2. Specify the name of the package (Python and/or Debian) by replacing `[package_name]` in the files:
23-
* `./setup.py:6`
24-
* `./setup.py:11`
25-
* `./debian/rules:3`
26-
* `./debian/rules:19`
27-
* `./debian/control:1`
28-
* `./debian/control:12`
29-
* `./debian/control:14`
30-
* `./debian/copyright:2`
31-
* `./debian/copyright:4`
25+
```sh
26+
npm run dev
27+
```
3228

33-
3. Specify the description of the package (Python and/or Debian) by replacing `[package_description]` in the file:
34-
* `./setup.py:10`
29+
### Compile and Minify for Production
30+
31+
```sh
32+
npm run build
33+
```

debian/changelog

Whitespace-only changes.

debian/control

Lines changed: 0 additions & 18 deletions
This file was deleted.

debian/copyright

Lines changed: 0 additions & 9 deletions
This file was deleted.

debian/rules

Lines changed: 0 additions & 21 deletions
This file was deleted.

debian/source/format

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian/source/options

Lines changed: 0 additions & 1 deletion
This file was deleted.

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6+
<meta name="theme-color" content="#000000"/>
7+
<link rel="icon" type="image/x-icon" href="src/assets/logo.svg">
8+
<title>PiRogue Admin Client Vue administration</title>
9+
</head>
10+
<body>
11+
<div id="app"></div>
12+
<script type="module" src="src/main.ts"></script>
13+
</body>
14+
</html>

jsconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
}
6+
},
7+
"exclude": ["node_modules", "dist"]
8+
}

0 commit comments

Comments
 (0)