Added new articles, updated landing page

This commit is contained in:
Ubergeek 2019-07-05 13:33:31 +00:00
parent 5d39d872c2
commit c32af0ef9f
5 changed files with 47 additions and 2 deletions

View File

@ -0,0 +1,24 @@
# Databases
There are some database technologies available on Thunix.
* MySQL/MariaDB
* Sqlite
## Sqlite
In the spirit of minimalism, the recommended database technology to use here is sqlite. Sqlite DB's exist as a single, atomic file, and are a good use for light applications, with low to medium concurrent loads.
As an example, [tildegit](https://tildegit.org) is backed by a sqlite database. It also allows for greater flexibility, and segregation for your application's data: You can create as many sqlite databases as you need.
## MySQL/MariaDB
We have MariaDB server running on Thunix, and should you desire, we can provision a database for you. In order to minimize admin overhead, the database will be named the same as your user account. It's recommended that in order to segregate your applications in the single DB, use table-prefixes.
### Requesting a MySQL/MariaDB Database
Either opening an issue on [tildegit](https://tildegit.org/thunix), shooting an email to root, or asking in IRC is the way to get a DB created for your.
### Admin notes
The makedb and dbremove commands are used to create and destroy their respective databases. See [makedb](/wiki/makedb) and [dbremove](/wiki/dbremove) for more information.

View File

@ -0,0 +1,3 @@
# dbremove
Coming soon

11
articles/wiki/iris.md Normal file
View File

@ -0,0 +1,11 @@
# Iris
Iris is a command-line based forum software. If you've ever used a BBS in the past, you'll fine this interface quite similar to forums of that style. Not quite as complicated as bboard.
## Usage
To use iris, once logged into your shell account, just type `iris`.
Once there, type `t` to see the topics. To read a topic, just type the topic number. To reply, `r` followed by the topic number.
To quite, just type `q`.

View File

@ -1,5 +1,9 @@
# Current List of Pages
* [Contributing to the wiki](contributing)
* [How to use email](email)
* [Using SSH with thunix](ssh)
* [How to use email](/wiki/email)
* [Using SSH with thunix](/wiki/ssh)
* [Iris](/wiki/iris)
* [Databases](/wiki/databases)
* [dbremove](/wiki/dbremove)
* [makedb](/wiki/makedb)

3
articles/wiki/makedb.md Normal file
View File

@ -0,0 +1,3 @@
# Makedb
Coming soon.