Skip to content

Commit

Permalink
Add 2.0 Code
Browse files Browse the repository at this point in the history
  • Loading branch information
sasial-dev committed Apr 3, 2021
1 parent 458b4f6 commit 963421a
Show file tree
Hide file tree
Showing 45 changed files with 27,029 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/beta.yml
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 }}
29 changes: 29 additions & 0 deletions .github/workflows/stable.yml
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 }}
50 changes: 50 additions & 0 deletions README.md
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.
6 changes: 6 additions & 0 deletions default.project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "MainModule",
"tree": {
"$path": "src"
}
}
21 changes: 21 additions & 0 deletions development.project.json
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"
}
}
}
3 changes: 3 additions & 0 deletions foreman.toml
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" }
Loading

0 comments on commit 963421a

Please sign in to comment.