-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧱 finishing the infra stage [1/n] ✨feat: add skeleton for the ci hook methods; [1/n] - fetch the API on the mainClass - convert the XML file (workflow artifact) to json format - todo: sanitize then synchronize with backend REST API 🍻 ✨feat: add Rust project scaffolding for the front-end using actix-rs 📝add: Dockerfile for the actix-rs calling from Alpine and Debian 📝 style: add deploy stuff on the README.md documentation 🚀 add: cronjob targets on the Makefile for automated build by the Actions CI runner [1/n] ♻️ refactor: feat - fix syntax typos for the shellscript at scripts/ccr.sh - this makes the compose a little distribution independent since it prioritizes the Podman Service systemd's socket unit file as DOCKER_HOST, so you don't have to run the docker daemon on background, although still depends on systemd.
- Loading branch information
Showing
17 changed files
with
1,485 additions
and
10 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
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
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
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,4 @@ | ||
.vscode | ||
target | ||
._target | ||
notes.md |
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,8 @@ | ||
# APP | ||
APP_NAME=mclFront | ||
RUN_ENV=dev | ||
HOST=0.0.0.0 | ||
PORT=8080 | ||
|
||
# CORS | ||
CORS_ALLOWED=* |
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,82 @@ | ||
# This file should only ignore things that are generated during a `x.py` build, | ||
# generated by common IDEs, and optional files controlled by the user that | ||
# affect the build (such as config.toml). | ||
# In particular, things like `mir_dump` should not be listed here; they are only | ||
# created during manual debugging and many people like to clean up instead of | ||
# having git ignore such leftovers. You can use `.git/info/exclude` to | ||
# configure your local ignore list. | ||
|
||
## File system | ||
.DS_Store | ||
desktop.ini | ||
|
||
## Editor | ||
*.swp | ||
*.swo | ||
Session.vim | ||
.cproject | ||
.idea | ||
*.iml | ||
.vscode | ||
.project | ||
.favorites.json | ||
.settings/ | ||
.vs/ | ||
|
||
## Tool | ||
.valgrindrc | ||
.cargo | ||
# Included because it is part of the test case | ||
!/tests/run-make/thumb-none-qemu/example/.cargo | ||
|
||
## Configuration | ||
/config.toml | ||
/Makefile | ||
config.mk | ||
config.stamp | ||
no_llvm_build | ||
|
||
## Build | ||
/dl/ | ||
/doc/ | ||
/inst/ | ||
/llvm/ | ||
/mingw-build/ | ||
build/ | ||
!/compiler/rustc_mir_build/src/build/ | ||
/build-rust-analyzer/ | ||
/dist/ | ||
/unicode-downloads | ||
/target | ||
/src/bootstrap/target | ||
/src/tools/x/target | ||
# Created by default with `src/ci/docker/run.sh` | ||
/obj/ | ||
|
||
## Temporary files | ||
*~ | ||
\#* | ||
\#*\# | ||
.#* | ||
|
||
## Tags | ||
tags | ||
tags.* | ||
TAGS | ||
TAGS.* | ||
|
||
## Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
## Node | ||
node_modules | ||
package-lock.json | ||
package.json | ||
|
||
## Rustdoc GUI tests | ||
tests/rustdoc-gui/src/**.lock | ||
|
||
# Before adding new lines, see the comment at the top. | ||
|
Oops, something went wrong.