Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 1fb116d

Browse files
committed
init commit
0 parents  commit 1fb116d

File tree

360 files changed

+85447
-0
lines changed

Some content is hidden

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

360 files changed

+85447
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <https://unlicense.org>

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# backpack
2+
built to serve developers, connecting the next billion
3+
4+
5+
It can help us connect the whole of Africa, achieve economic freedom, and with this realisation we decided to build backpack,
6+
a modern day developer swiss knife, one that would help them build solutions to the problems we face as humans
7+
8+
A collection of the worlds greatest hits bundled into a low code solution,
9+
providing the flexibility needed to achieve our mission
10+
11+
### Getting Started
12+
13+
You can use this starter template to playaround with it
14+
[backpack-starter](https://github.com/codebenderhq/backpack-starter)
15+
16+
### sauveur cloud
17+
18+
.env fille required
19+
20+
21+
if your behind a firewall check this out
22+
--unsafely-ignore-certificate-errors
23+
24+
need to bundle server and serve the bridge instance, which is not backpack
25+
26+
in developent this can help
27+
" --import-map ./import_map.json ",
28+
29+
convert deno task init into a script
30+
31+
to install
32+
deno install
33+
34+
deno task sdk will be for people who would like to import their packages beforehand by specifying it there without the npm

backpack/.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
REMOTE=/home/git
2+
SERVER_KEY=some_server_key_12345

backpack/deno.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"tasks": {
3+
"dev": "export LOCAL=/src/_server && export LOCAL_BUILD=. && deno run --watch -A index.js ",
4+
"run": " export LOCAL=/src/_server && export LOCAL_BUILD=. && deno run --watch -A index.js build",
5+
"test": " deno task build && deno test ./qa --allow-run --allow-net --allow-env --allow-read --import-map ./src/import_map.json "
6+
"reload": "deno cache --import-map ./src/import_map.json --reload ./src/server/index.js",
7+
"init": "chmod +x style && ./style",
8+
"setup": "curl -sLO https://github.com/codebenderhq/backpack/releases/latest/download/binary.zip && unzip binary.zip"
9+
}
10+
}

backpack/deno.lock

Lines changed: 289 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)