Matt Baer
be2c7ef86b
Show instance stats on About page
...
This also moves the stats database logic out of nodeinfo.go and into
database.go.
2018-11-21 14:08:47 -05:00
Matt Baer
b9d7d4ce24
Change default database name to writefreely
...
(not writeas)
2018-11-21 13:36:00 -05:00
Matt Baer
f3df2b4159
Use and validate database type before connecting
...
Just the start of changes needed for T529.
2018-11-21 13:10:10 -05:00
Marcel van der Boom
b030921691
Don't automatically include "v" from git
...
- "v" should not be part of the version (softwareVer variable is used
in other places)
- formatting
2018-11-20 18:14:02 +01:00
Marcel van der Boom
c25d0bef67
Get versioninfo from the git repository
...
Sets value of softwareVer during build
2018-11-20 14:21:13 +01:00
Matt Baer
bdc4f270f8
Support editing About and Privacy pages from Admin panel
...
This allows admin to edit these pages from the web, using Markdown. It
also dynamically loads information on those pages now, and makes loading
`pages` templates a little easier to find in the code / more explicit.
It requires this new schema change:
CREATE TABLE IF NOT EXISTS `appcontent` (
`id` varchar(36) NOT NULL,
`content` mediumtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
This closes T533
2018-11-18 21:58:50 -05:00
Matt Baer
ad1180f202
Bump version to 0.3
2018-11-16 13:20:40 -05:00
Matt Baer
ed1b77ea3b
Support outputting version with -v flag
2018-11-15 14:51:03 -05:00
Matt Baer
0eac9251c0
Add location to MySQL connection string
...
This should address #23
2018-11-14 17:47:58 -05:00
Matt Baer
9016f87041
Add --reset-pass option for admin pass reset
...
Usage: writefreely --reset-pass <username>
This closes #25 , closes T534
2018-11-14 15:03:22 -05:00
Matt Baer
b1686b1d46
Add --init-db flag to create schema in app
...
Part of T530
2018-11-13 13:04:52 -05:00
Matt Baer
bf44236748
Bump version to 0.2.1
2018-11-12 21:02:45 -05:00
Matt Baer
002d0e6309
Bump version to 0.2
2018-11-11 18:37:30 -05:00
Matt Baer
7bc873580c
Move key generation to app from keys.sh
...
This eliminates an external dependency needed for install, and ensures
the app can run on Windows.
2018-11-11 17:52:24 -05:00
Matt Baer
1cb593fd8c
Fix unnecessarily connecting to DB after multi-user config
2018-11-10 20:43:00 -05:00
Matt Baer
ae019e4dc3
Show error when ListenAndServe fails
...
and exit with 1
2018-11-10 20:41:35 -05:00
Matt Baer
a6478f1b1d
Create blog during config for single-user blogs
2018-11-09 22:16:13 -05:00
Matt Baer
5a062eb437
Include flashes on signup page
2018-11-09 21:14:22 -05:00
Matt Baer
be31da2fe7
Tweak capitalization / spacing in Write Freely name
...
This affects nodeinfo and ActivityPub requests
2018-11-08 13:37:42 -05:00
Matt Baer
55ada67170
Fill in remaining missing pieces
...
- Database schema changes, removing obsolete custom domain-related code
- Missing user structs
- Setup verbiage changes
- Missing routes
- Missing error messages
2018-11-08 01:33:26 -05:00
Matt Baer
86e7ba2579
Add editor
...
This includes the '/' route handler
2018-11-08 00:11:42 -05:00
Matt Baer
a30fc5b52b
Add handler, page, template loading
2018-11-07 23:50:50 -05:00
Matt Baer
a3b7b260c5
Add debugging flag
...
This also includes a new Dev config options
2018-11-07 22:13:16 -05:00
Matt Baer
cc224db6e6
Add interactive configuration
...
This adds a new --config flag and rearranges some config fields.
2018-10-25 09:15:10 -04:00
Matt Baer
6bdb7a1c1c
Output config saving errors
2018-10-24 14:21:42 -04:00
Matt Baer
1a6f61690e
Add NodeInfo endpoints
...
Includes new instance stats and the new option to show user stats, as
well.
2018-10-17 19:25:09 -04:00
Matt Baer
0c1e1dd57e
Add data layer
...
This includes config changes, collections, posts, some post rendering
funcs, and actual database connection when the server starts up.
2018-10-16 22:31:27 -04:00
Matt Baer
62abc11142
Add web session management
2018-10-16 20:31:07 -04:00
Matt Baer
af601d7b0c
Add --create-config flag to generate default config
2018-10-16 16:57:55 -04:00
Matt Baer
16473c97b7
Create basic server
...
Includes app config and some initialization
2018-10-15 14:44:15 -04:00