Lightweight alternative to Discourse written in Nim https://forum.nim-lang.org/
Find a file
2017-01-02 20:49:27 +01:00
public Implemented quotes. 2016-01-30 15:05:28 +00:00
static Forum search added and some modifications done. 2014-11-11 08:22:11 +03:00
.gitignore Added binaries to ignored files for convenience 2015-02-15 12:58:15 +01:00
cache.nim get rid of most deprecation warnings 2016-12-31 11:59:03 +01:00
captchas.nim get rid of most deprecation warnings 2016-12-31 11:59:03 +01:00
createdb.nim don't use admin field in db anymore 2017-01-01 21:00:37 +01:00
editdb.nim adjusted to dom's remarks 2017-01-02 20:49:27 +01:00
forms.tmpl adjusted to dom's remarks 2017-01-02 20:49:27 +01:00
forum.nim adjusted to dom's remarks 2017-01-02 20:49:27 +01:00
forum.nim.cfg Updated the config file 2015-02-21 23:40:11 +01:00
fts.sql Improves search. 2014-12-07 02:53:10 +00:00
license.txt More Nimrod -> Nim. Readme improvements. 2015-02-14 15:16:24 +00:00
main.tmpl Fix bans not working when user is already logged in. 2016-06-16 21:59:06 +01:00
nimforum.nimble Fix usage of 'random' after moving from 'math' 2016-06-10 16:40:59 +03:00
ranks.nim adjusted to dom's remarks 2017-01-02 20:49:27 +01:00
README.md Fixes for 0.12.0 (tables.[]), and added -d:dev. 2015-11-07 00:21:31 +00:00
rst.txt s/nimrod-code/nimrod-lang/ 2013-12-24 19:26:28 +01:00
todo.txt all relevant files added 2012-05-05 01:14:26 +02:00
utils.nim new Rank enum; admins and moderators; sane data model 2017-01-01 20:34:25 +01:00

nimforum

This is Nim's forum. Available at http://forum.nim-lang.org.

Building

You can use nimble (available here to get all the necessary dependencies.

Clone this repo and execute nimble build in this repositories directory.

See also: Running the forum for how to create the database

Dependencies

The code depends on the RST parser of the Nim compiler and on Jester. The code generating captchas for registration uses the cairo module, which requires you to have the cairo library installed when you run the forum, or you will be greeted by a cryptic error message similar to:

$ ./forum could not load: libcairo.so(1.2)

Mac OS X

cairo

If you are using macosx and have installed the cairo library through MacPorts you still need to add the library path to your LD_LIBRARY_PATH environment variable. Example:

$ LD_LIBRARY_PATH=/opt/local/lib/ ./forum

Replace /opt/local/lib with the correct path on your system.

bcrypt

On macosx you also need to make sure to use the bcrypt >= 0.2.1 module if that is not yet updated you can install it with:

nimble install https://github.com/oderwat/bcryptnim.git@#fix-osx

You may also need to change nimforum.nimble such that it uses 0.2.1 by changing the dependencies slightly.

[Deps]
Requires: "nimrod >= 0.10.3, cairo#head, jester#head, bcrypt >= 0.2.1"

Running the forum

Important: You need to compile and run createdb to generate the initial database before you can run forum the first time!

Note: If you do not have a mail server set up locally, you can specify -d:dev during compilation to prevent nimforum from attempting to send emails and to automatically activate user accounts

This is as simple as:

nim c -r createdb

After that you can just run forum and if everything is ok you will get the info which URL you need to open in your browser (http://localhost:5000) to access it.

There is an update helper editdb which you can safely ignore for now.

The files captchas.nim, cache.nim are included by forum.nim and do not need to be compiled by you.

Copyright

Copyright (c) 2012-2015 Andreas Rumpf, Dominik Picheta.

All rights reserved.

License

Nimforum is licensed under the MIT license.