Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ChlodAlejandro committed Jan 25, 2024
0 parents commit 7987786
Show file tree
Hide file tree
Showing 5 changed files with 101 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
name: Build executables
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true

- name: Update main branch code
run: git pull
working-directory: resources/

- name: Install Neutralino.js globally
run: npm install -g @neutralinojs/neu

- name: Build
run: neu build --release

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/Mapua100-release.zip
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Developer tools' files
.lite_workspace.lua

# Neutralinojs binaries and builds
/bin
/dist

# Neutralinojs client (minified)
neutralino.js

# Neutralinojs related files
.storage
*.log
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "resources"]
path = resources
url = git@github.com:gdsc-mapua/Mapua100.git
51 changes: 51 additions & 0 deletions neutralino.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "gdsc.mapua.mapua100",
"version": "1.0.0",
"defaultMode": "window",
"port": 0,
"documentRoot": "/resources/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"tokenSecurity": "one-time",
"logging": {
"enabled": true,
"writeToLogFile": true
},
"nativeAllowList": [],
"modes": {
"window": {
"title": "Mapúa University Centennial Countdown",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 200,
"fullScreen": true,
"alwaysOnTop": false,
"icon": "/resources/images/logo-gdsc.png",
"enableInspector": false,
"borderless": true,
"maximize": true,
"hidden": false,
"resizable": true,
"exitProcessOnClose": true
},
"chrome": {
"width": 800,
"height": 500,
"args": "--user-agent=\"Mapúa University Centennial Countdown\"",
"nativeBlockList": [
"filesystem.*",
"os.*"
]
}
},
"cli": {
"binaryName": "Mapua100",
"resourcesPath": "/resources/",
"extensionsPath": "/extensions/",
"binaryVersion": "4.14.1",
"clientVersion": "3.12.0"
}
}
1 change: 1 addition & 0 deletions resources
Submodule resources added at a4063c

0 comments on commit 7987786

Please sign in to comment.