1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Go to file
dmz76 6160ac1f59 Add '.editorconfig'
Add [.editorconfig](http://editorconfig.org/) global settings (supported by gogs) to normalize code contributions. The default settings are what I use in my repos.
Must be reviewed by @Uncled1023 with attention to the following:

```
end_of_line = lf # or crlf for windows env?
trim_trailing_whitespace = true # or false, since it's not good for Markdown files?
```
2016-11-10 08:24:11 -08:00
ServerMaint Changed paste to use backend syntax highlighting by pygments instead of a JS method. 2016-10-20 16:50:35 -07:00
Teknik Indent fix 2016-11-10 03:34:25 -08:00
.editorconfig Add '.editorconfig' 2016-11-10 08:24:11 -08:00
.gitattributes Initial commit to add default .gitIgnore and .gitAttribute files. 2015-07-14 17:12:45 -07:00
.gitignore Added manual specification of machine key to prevent reset of credentials 2016-10-27 00:29:49 -07:00
GitVersionConfig.yaml Updated version to 2.0.4 2016-10-08 00:31:05 -07:00
license.txt Added license and readme 2015-07-16 21:19:40 -07:00
README.md Updated readme formatting 2016-09-22 15:57:14 -07:00
Teknik.sln Reverted GitVersion yaml name 2016-06-17 16:42:36 -07:00

Teknik Web Services

Teknik is a suite of services with attractive and functional interfaces.

Features

  • File Upload w/ encryption
  • Pastebin
  • Url Shortening
  • Blogs
  • Git Repositories
  • Podcasts
  • Easy to use API
  • Flexible installation and configuration

You can see a live demo here.

Requirements

In order to run Teknik on your server, you'll need:

  • IIS 7+ with URL Rewrite module or Apache with mod_rewrite enabled (Requires conversion of web.config files)
  • ASP.NET MVC 5
  • .NET Framework 4.5.2
  • MS SQL Server
  • hMailServer (If running email as well)
  • Web Mail Client (If you would like to have webmail)
  • Gogs Service (If you want to have git integration)

Installation

  • Clone the Teknik repository to your web root directory, or anywhere else you want to run Teknik from.
cd /var/www
git clone https://git.teknik.io/Teknikode/Teknik
  • Open the Teknik.sln file to build the project.
  • Copy the build files to your wwwroot directory.
  • Create a ConnectionStrings.config file in the App_Data directory and fill it with the following template and put in your sql server conenction details
<connectionStrings>
  <add name="TeknikEntities"
    providerName="System.Data.SqlClient"
    connectionString="Data Source=<server name>,<port>\<sql server name>;Initial Catalog=<database>;Integrated Security=False;User Id=<username>;Password=<password>" />
</connectionStrings>
  • After first run, a Config.json file will be created in the App_Data directory. This will need to be edited with your configuration options.

That's it, installation complete! If you're having problems, let us know through the Contact page.

Authors and contributors

License

BSD 3-Clause license

Development

You can view Teknik's Development Branch to see the current new features. (It may not work, as it is a development branch)

Contributing

If you are a developer, we need your help. Teknik is a young project and we have lot's of stuff to do. Some developers are contributing with new features, others with bug fixes. Any help you can give would be greatly appreciated!

Further information

If you want to know more about the features of Teknik, check the Help page. Also, if you're having problems with Teknik, let us know through the Contact page. Don't forget to give feedback and suggest new features! :)