Skip to content

Commit

Permalink
Merge pull request #39 from SkwalExe/documentation
Browse files Browse the repository at this point in the history
Add first documentation page
  • Loading branch information
SkwalExe authored Jun 9, 2024
2 parents 09d584d + 0f53ef7 commit c8c719b
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 6 deletions.
7 changes: 4 additions & 3 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default defineConfig({
{ text: "Home", link: "/" },
{ text: "Getting Started", link: "/getting-started" },
],
outline: 'deep',
footer: {
message: 'Released under the GNU General Public License (GPLv3).',
copyright: 'Copyright © 2021-present Léopold Koprivnik'
Expand All @@ -24,10 +25,10 @@ export default defineConfig({
},
sidebar: [
{
text: "Examples",
text: "Introduction",
items: [
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
{ text: "📥 Getting Started", link: "/getting-started" },
{ text: "🎨 Available Styles/Temes", link: "/available-styles" },
],
},
],
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
--vp-c-brand-1: #ee8483;
--vp-c-brand-2: #e75351;
--vp-c-brand-3: #ee8483;
--vp-c-brand-soft: #f5b5b4;
/* --vp-c-brand-soft: #f5b5b4; */
}
3 changes: 3 additions & 0 deletions docs/src/available-styles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
::: warning WORK IN PROGRESS
The documentation will be completed soon.
:::
42 changes: 40 additions & 2 deletions docs/src/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
::: warning
Work in progress. The documentation will be available soon.
![Project's logo](./logo.png)

<p align="center">💠 Simple logos for complex projects 💠</p>

## Credits

I had the idea to create this project after seeing the logos made by [adi1090x](https://github.com/adi1090x) for his repositories. They were simple but gave a nice feel to his projects. I wanted a logo that gives the same energy, but didn't manage to find how he made them (most likely manually, with GIMP according the the exif data of the images). So I decided to make a program that would allow anyone to generate cool and simple logos for their projects.

## Installation 📥 {#installation}

OctoLogo requires Python version 3.9 or higher.

::: warning Command not found

If the command is not found after installation, it may be because the `~/.local/bin` directory is not in your path. You can fix this probem by adding `export PATH=$PATH:~/.local/bin` to your `.bashrc` or `.zshrc` file.

```bash
# For bash
echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc

# For zsh
echo 'export PATH=$PATH:~/.local/bin' >> ~/.zshrc
```
:::


### Via pipx (recommended)

```bash
pipx install octologo
```

### Via pip

```bash
pip install octologo
```

---

**🎉 You can now use the app with the `octologo` command!**
Binary file added docs/src/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c8c719b

Please sign in to comment.