-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
458b4f6
commit 963421a
Showing
45 changed files
with
27,029 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Beta Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ci: | ||
name: CI and Deployment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
submodules: true | ||
|
||
- uses: Roblox/setup-foreman@v1 | ||
with: | ||
version: "^1.0.0" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Report tool versions | ||
run: rojo --version | ||
|
||
- name: Deploy | ||
run: rojo upload --cookie "$ROBLOSECURITY" --asset_id 6605037523 default.project.json | ||
env: | ||
ROBLOSECURITY: ${{ secrets.ROBLOSECURITY }} |
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,29 @@ | ||
name: Stable Release | ||
|
||
on: | ||
release: | ||
types: [released] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ci: | ||
name: CI and Deployment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
submodules: true | ||
|
||
- uses: Roblox/setup-foreman@v1 | ||
with: | ||
version: "^1.0.0" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Report tool versions | ||
run: rojo --version | ||
|
||
- name: Deploy | ||
run: rojo upload --cookie "$ROBLOSECURITY" --asset_id 6605034516 default.project.json | ||
env: | ||
ROBLOSECURITY: ${{ secrets.ROBLOSECURITY }} |
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,50 @@ | ||
<div align="center"> | ||
|
||
# LundstrongOrders | ||
A beautiful ordering system, designed for your Roblox Cafes. | ||
|
||
<a href="https://github.com/Lundstrong/Edit-Roblox-Place/blob/master/LICENSE"><img alt="GitHub license" src="https://img.shields.io/github/license/Lundstrong/Edit-Roblox-Place"></a> | ||
<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/Lundstrong/LundstrongOrders"> | ||
</div> | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
None. | ||
|
||
### Installation | ||
|
||
<br> | ||
|
||
#### Roblox | ||
|
||
* Search `Lundstrong Orders` in the toolbox, and insert the model made by `LundBot` | ||
|
||
#### GitHub | ||
|
||
* Type in: `git clone https://github.com/Lundstrong/LundstrongOrders.git` | ||
|
||
#### More | ||
|
||
* More Installion methods are avaliable in the docs. | ||
|
||
## Usage | ||
|
||
Open up the configuration file and configure it up to your needs! | ||
|
||
## Roadmap | ||
The Roadmap for this project is on GitHub Pages. If you have any ideas please let us know on the discord or open an issue! | ||
|
||
## Contributing | ||
We love contributions! Pull requests are warmly welcomed and highly appriciated. For major changes, please open an issue first or discuss on the discord to let us know what you would like to change. | ||
|
||
## Support | ||
Join the [Lundstrong Discord](https://discord.gg/2w9PmHZPwX). A channel will be opened up in the near-future for support. | ||
|
||
## License | ||
FOSSA Coming soon. | ||
|
||
## Acknowledgements | ||
|
||
This Product has been expanded by the [DataStore2](https://kampfkarren.github.io/Roblox/) library. If it wasn't for them - the cases of data loss may be an issue. |
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,6 @@ | ||
{ | ||
"name": "MainModule", | ||
"tree": { | ||
"$path": "src" | ||
} | ||
} |
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,21 @@ | ||
{ | ||
"name": "LundstrongOrders Development", | ||
"tree": { | ||
"$className": "DataModel", | ||
"ReplicatedStorage": { | ||
"$className": "ReplicatedStorage", | ||
"$ignoreUnknownInstances": true, | ||
"$path": "src/ReplicatedStorage" | ||
}, | ||
"StarterGui": { | ||
"$className": "StarterGui", | ||
"$ignoreUnknownInstances": true, | ||
"$path": "src/StarterGui" | ||
}, | ||
"ServerScriptService": { | ||
"$className": "ServerScriptService", | ||
"$ignoreUnknownInstances": true, | ||
"$path": "src/Server" | ||
} | ||
} | ||
} |
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,3 @@ | ||
[tools] | ||
rojo = { source = "rojo-rbx/rojo", version = "6.0.2" } | ||
selene = { source = "Kampfkarren/selene", version = "0.11.0" } |
Oops, something went wrong.