4.0 KiB
Teknik Web Services
Teknik is a suite of services with attractive and functional interfaces.
Features
- File Upload w/ client side encryption
- Album Support
- Pastebin
- URL Shortening
- Blogs
- Git Integration (Gitea)
- Podcasts
- Easy to use API
- Flexible installation and configuration
- And much more...
You can see a live demo here.
Requirements
In order to run Teknik on your server, you'll need:
- IIS 7+, Nginx, or Apache
- .NET Core 2.1 Runtime (Or SDK if building the src)
- A SQL Server (MS SQL Server, MySQL, SQLite)
- hMailServer (If running email service)
- Gitea (If you want to have Git integration)
- Web Mail Client (If you would like to have webmail)
Installation
- Set up Asp.Net Core to work with your system of choice - Instructions
- Download the latest release of Teknik for your system - Releases
- Copy the files to your local web root directory.
- Create a
ConnectionStrings.config
file in theApp_Data
directory and fill it with the following template and put in your SQL server connection details.
<connectionStrings>
<add name="TeknikEntities"
providerName="System.Data.SqlClient"
connectionString="<Sql Server Connection String>" />
</connectionStrings>
- After the first run, a
Config.json
file will be created in theApp_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.
Building
Linux
- Clone the Teknik repository to a directory of your choosing.
cd ~
mkdir src
cd ./src
git clone https://git.teknik.io/Teknikode/Teknik
- Set up .Net Core SDK for you system of choice - Instructions
- Install Node.js (Includes npm).
- Run the npm build script
npm run build
.- This will install, move, bundle, and minify all the client side assets (JavaScript, CSS, Fonts, and Images).
- To see exactly what happens or to modify the build. look at the
gulpfile.js
file.
- Run dotnet publish from the root directory of the repo to build and package the app into the release publish directory (for example: ./Teknik/bin/Release/netcoreapp2.1/publish).
dotnet publish --configuration Release
-
Copy the files in the publish directory to where you want to run the website from.
-
Test the website:
- In the directory conatining the published files, run
dotnet Teknik.dll
- In a browser, open http://localhost:5000/?sub=www
- In the directory conatining the published files, run
Authors and contributors
- Chris Woodward (Creator, Developer)
- dronedaddy (Logo Designer)
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 lots 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! :)