mirror of
https://github.com/parkervcp/eggs.git
synced 2024-11-11 19:57:22 +08:00
Merge pull request #1960 from devnote-dev/clean-readme
chore(generic): update generic readmes
This commit is contained in:
commit
15352ed9e3
@ -26,6 +26,8 @@ If you are reading this it looks like you are looking to add an egg to your serv
|
|||||||
|
|
||||||
[Discord](/bots/discord)
|
[Discord](/bots/discord)
|
||||||
|
|
||||||
|
**Note:** these are actual Discord bot eggs, NOT language eggs. The old language eggs (discord-js-generic, discord-py-generic, etc) have been moved to the [generic languages section](#generic-languages).
|
||||||
|
|
||||||
* [ATL Bot](/bots/discord/atlbot) Node JS
|
* [ATL Bot](/bots/discord/atlbot) Node JS
|
||||||
* [Bastion](/bots/discord/bastion) Node JS
|
* [Bastion](/bots/discord/bastion) Node JS
|
||||||
* [CorpBot](/bots/discord/corpbot) Python
|
* [CorpBot](/bots/discord/corpbot) Python
|
||||||
|
@ -3,44 +3,44 @@
|
|||||||
### [Dart](dart)
|
### [Dart](dart)
|
||||||
|
|
||||||
[dart](https://dart.dev/)
|
[dart](https://dart.dev/)
|
||||||
A generic dart egg
|
A generic Dart language egg
|
||||||
|
|
||||||
### [Deno](deno)
|
### [Deno](deno)
|
||||||
|
|
||||||
[deno](https://deno.land/)
|
[deno](https://deno.land/)
|
||||||
A generic deno egg
|
A generic Deno language egg
|
||||||
|
|
||||||
### [Golang](golang)
|
### [Golang](golang)
|
||||||
|
|
||||||
[golang](https://go.dev/)
|
[golang](https://go.dev/)
|
||||||
A generic go egg
|
A generic Go language egg
|
||||||
|
|
||||||
### [Java](java)
|
### [Java](java)
|
||||||
|
|
||||||
[java](https://www.java.com/en/)
|
[java](https://www.java.com/en/)
|
||||||
A generic java egg
|
A generic Java (and Kotlin) language egg
|
||||||
|
|
||||||
### [Lua](lua)
|
### [Lua](lua)
|
||||||
|
|
||||||
[lua](https://www.lua.org/)
|
[lua](https://www.lua.org/)
|
||||||
A generic luvit/lua egg
|
A generic Lua (Luvit) language egg
|
||||||
|
|
||||||
### [Node JS](nodejs)
|
### [Node JS](nodejs)
|
||||||
|
|
||||||
[nodejs](https://nodejs.org)
|
[nodejs](https://nodejs.org)
|
||||||
A generic node.js egg
|
A generic Node.JS egg
|
||||||
|
|
||||||
### [nodemon](nodemon)
|
### [nodemon](nodemon)
|
||||||
|
|
||||||
[nodemon](https://nodemon.io/)
|
[nodemon](https://nodemon.io/)
|
||||||
A nodemon javascript egg for running and automatically restarting the node application when file changes in the directory are detected
|
A nodemon JavaScript and TypeScript language egg for running and automatically restarting the node application when file changes in the directory are detected
|
||||||
|
|
||||||
### [Python](python)
|
### [Python](python)
|
||||||
|
|
||||||
[python](https://www.python.org/)
|
[python](https://www.python.org/)
|
||||||
A generic python egg
|
A generic Python language egg
|
||||||
|
|
||||||
### [Rust](python)
|
### [Rust](python)
|
||||||
|
|
||||||
[rust](https://www.rust-lang.org/)
|
[rust](https://www.rust-lang.org/)
|
||||||
A generic rust egg
|
A generic Rust language egg
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# dart generic
|
# Dart Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Dart application, allowing users to pull their own Dart discord bot from a Github repository.
|
This egg is designed to run any generic Dart application, allowing users to pull their own Dart source code from a Github repository.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a bot.
|
There is an option to allow a user to upload their own files to run a bot.
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Deno generic
|
# Deno - JavaScript & TypeScript Generic
|
||||||
|
|
||||||
## From their [site](https://deno.land/)
|
## From their [site](https://deno.land/)
|
||||||
|
|
||||||
This egg is designed to run any generic Deno application, allowing users to pull their own Deno discord bot from a Github repository.
|
This egg is designed to run any generic Deno application, allowing users to pull their own Deno source code from a Github repository.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a server.
|
There is an option to allow a user to upload their own files to run a server.
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
# discordgo generic
|
# Go Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Golang application, allowing users to pull their own Golang discord bot from a Github repository.
|
This egg is designed to run any generic Go application, allowing users to pull their own Go source code from a Github repository.
|
||||||
|
|
||||||
The startup configs and commands may need changing to actually function properly.
|
The startup configs and commands may need changing to actually function properly.
|
||||||
|
|
||||||
Users cannot upload their own code as this is built to build the resulting bot.
|
Users cannot upload their own code as this is built to build the resulting bot.
|
||||||
|
|
||||||
`GO_PACKAGE` is the variable for the go repo i.e. `github.com/aurieh/ddg-ng`
|
`GO_PACKAGE` is the variable for the Go repo i.e. `github.com/aurieh/ddg-ng`
|
||||||
`EXECUTABLE` is the variable for the executable that is built i.e. `ddg-ng`
|
`EXECUTABLE` is the variable for the executable that is built i.e. `ddg-ng`
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# discord.java generic
|
# Java Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Java application, allowing users to pull their own Java discord bot from a Github repository.
|
This egg is designed to run any generic Java application, allowing users to pull their own Java source code from a Github repository. This egg is also compatible with Kotin.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a bot.
|
There is an option to allow a user to upload their own files to run a bot.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# luvit generic
|
# Lua (Luvit) Language Generic
|
||||||
|
|
||||||
This egg was designed to allow a user to pull their own lua code from a repo and run it with luvit.
|
This egg was designed to allow a user to pull their own Lua source code from a repo and run it with Luvit.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run an app.
|
There is an option to allow a user to upload their own files to run an app.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# discord.js generic
|
# JavaScript Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Javascript application, allowing users to pull their own javascript discord bot from a Github repository.
|
This egg is designed to run any generic JavaScript application, allowing users to pull their own JavaScript source code from a Github repository.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a bot.
|
There is an option to allow a user to upload their own files to run a bot.
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
# nodemon.js
|
# Nodemon (JavaScript & TypeScript)
|
||||||
|
|
||||||
Tired of manually restarting your bot? Nodemon will do it by itself.
|
Tired of manually restarting your bot? Nodemon will do it by itself.
|
||||||
|
|
||||||
Nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. Nodemon does not require any additional changes to your code or method of development.
|
Nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. Nodemon does not require any additional changes to your code or method of development.
|
||||||
|
|
||||||
This egg is designed to run any generic Javascript application, allowing users to pull their own javascript discord bot from a Github repository.
|
This egg is designed to run any generic Javascript application, allowing users to pull their own JavaScript or TypeScript source code from a Github repository.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a bot.
|
There is an option to allow a user to upload their own files to run a bot.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# discord.py generic
|
# Python Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Python application, allowing users to pull their own Python discord bot from a Github repository.
|
This egg is designed to run any generic Python application, allowing users to pull their own Python source code from a Github repository.
|
||||||
|
|
||||||
There is an option to allow a user to upload their own files to run a bot.
|
There is an option to allow a user to upload their own files to run a bot.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# rust generic
|
# Rust Language Generic
|
||||||
|
|
||||||
This egg is designed to run any generic Rust application with cargo, allowing users to pull their own Rust discord bot from a GitHub repository.
|
This egg is designed to run any generic Rust application with Cargo, allowing users to pull their own Rust source code from a GitHub repository.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user