mirror of
https://github.com/filegator/filegator.git
synced 2025-08-17 10:50:38 +02:00
Website generation with Couscous
This commit is contained in:
110
install.html
Normal file
110
install.html
Normal file
@@ -0,0 +1,110 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>FileGator</title>
|
||||
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/highlight.dark.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="navbar navbar-default navbar-fixed-top">
|
||||
|
||||
<a class="navbar-brand" href="http://docs.filegator.io/filegator/">
|
||||
FileGator
|
||||
<small class="hidden-xs hidden-sm">
|
||||
Documentation
|
||||
</small>
|
||||
</a>
|
||||
|
||||
<a href="https://github.com/filegator/filegator">
|
||||
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
|
||||
</a>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="container-fluid">
|
||||
<div class="row">
|
||||
|
||||
|
||||
<nav id="sidebar" class="col-sm-3 col-lg-2" role="navigation">
|
||||
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/index.html">
|
||||
What is FileGator
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/install.html">
|
||||
Installation
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/configuration.html">
|
||||
Configuration
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="demo.html">
|
||||
Demo
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="license.html">
|
||||
License
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<section id="content" class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
|
||||
<h2 id="requirements">Requirements</h2>
|
||||
<ul>
|
||||
<li>PHP 7.1.3+</li>
|
||||
</ul>
|
||||
<h2 id="download-precompiled-build">Download precompiled build</h2>
|
||||
<ul>
|
||||
<li>Latest: <a href="https://github.com/filegator/static/raw/master/builds/filegator_v7.0.0-RC2.zip">v7.0.0-RC2</a></li>
|
||||
<li>Unzip files and upload them to your PHP server</li>
|
||||
<li>Make sure you webserver can read and write to <code>/storage</code> and <code>/private</code> folders</li>
|
||||
<li>Set the website document root to <code>/dist</code> directory</li>
|
||||
<li>Visit web page, if something goes wrong check <code>/private/logs/app.log</code></li>
|
||||
<li>Login with default credentials <code>admin/admin123</code></li>
|
||||
<li>Change default admin's password</li>
|
||||
<li>Adjust <code>configuration.php</code> file</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container-fluid">
|
||||
<p class="text-muted">
|
||||
website generated with <a href="http://couscous.io" title="Markdown website generator">Couscous</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
|
||||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
|
||||
<script src="//yastatic.net/highlightjs/8.2/highlight.min.js"></script>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
$("section>h1").wrap('<div class="page-header" />');
|
||||
// Syntax highlighting
|
||||
hljs.initHighlightingOnLoad();
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user