Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit ada11d4

Browse files
committed
updated documentation technologies page
1 parent b7ed458 commit ada11d4

File tree

9 files changed

+94
-2
lines changed

9 files changed

+94
-2
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<template>
2+
<div>
3+
<img :src="$withBase(`/${image}`)" alt="Logo">
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
props: {
10+
image: {
11+
type: String,
12+
default: ''
13+
},
14+
},
15+
name: "technology"
16+
}
17+
</script>
18+
19+
<style scoped>
20+
img {
21+
width: 100px;
22+
margin-top: 20px;
23+
}
24+
25+
</style>

documentation/docs/.vuepress/config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1+
const path = require("path");
2+
13
module.exports = {
24
title: "Verbose Equals True",
35
base: "/django-postgres-vue-gitlab-ecs/",
46
port: 8080,
7+
configureWebpack: {
8+
resolve: {
9+
alias: {
10+
"@assets": path.resolve(__dirname, "../assets")
11+
}
12+
}
13+
},
514
dest: "../public",
615
plugins: {
716
"@vuepress/google-analytics": {
23.9 KB
Loading
9.36 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
120 KB
Loading
7.75 KB
Loading

documentation/docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ features:
1313
details: This project aims to be accessible to people with all levels of skill.
1414
footer: MIT Licensed | Copyright © 2018-present Brian Caffey
1515
---
16+
17+
18+
![Image](~@assets/django.jpg)
Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,61 @@
11
# Tools used in this project
22

3-
Next we will introduce the software packages used in this project.
3+
This is a list of the tools used in this project.
4+
5+
6+
<technology image="django.jpg" />
7+
8+
## [Django](https://www.djangoproject.com/)
9+
10+
### The Web framework for perfectionists with deadlines
11+
12+
Django is a Python-based free and open-source web framework, which follows the model-template-view architectural pattern. It is maintained by the Django Software Foundation, an independent organization established as a 501 non-profit. Django's primary goal is to ease the creation of complex, database-driven websites.
13+
14+
[Read more about Django](https://www.djangoproject.com/)
15+
16+
17+
<technology image="vue.png" />
18+
19+
## [Vue.js](https://vuejs.org/)
20+
21+
### The Progressive JavaScript Framework
22+
23+
Vue (pronounced /vjuː/, like view) is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is easy to pick up and integrate with other libraries or existing projects. On the other hand, Vue is also perfectly capable of powering sophisticated Single-Page Applications when used in combination with modern tooling and supporting libraries.
24+
25+
[Read more about Vue.js](https://vuejs.org/)
26+
27+
<technology image="gitlab.svg" />
28+
29+
## [GitLab](https://gitlab.com/)
30+
31+
### The first single application for the entire DevOps lifecycle
32+
33+
From project planning and source code management to CI/CD and monitoring, GitLab is a complete DevOps platform, delivered as a single application.
34+
35+
[Read more about GitLab](https://gitlab.com/)
36+
37+
38+
<technology image="postgres.png" />
39+
40+
## [PostgreSQL](https://www.postgresql.org/)
41+
42+
### The world's most advanced open source database
43+
44+
PostgreSQL, also known as Postgres, is a free and open-source relational database management system emphasizing extensibility and technical standards compliance. It is designed to handle a range of workloads, from single machines to data warehouses or Web services with many concurrent users.
45+
46+
[Read more about PostgreSQL](https://www.postgresql.org/)
47+
48+
<technology image="ecs.png" />
49+
50+
## [Amazon ECS](https://aws.amazon.com/ecs/)
51+
52+
### Run containerized applications in production
53+
54+
Amazon Elastic Container Service (Amazon ECS) is a highly scalable, high-performance container orchestration service that supports Docker containers and allows you to easily run and scale containerized applications on AWS.
55+
56+
[Read more about ECS](https://aws.amazon.com/ecs/)
57+
458

559
::: warning Incomplete
660
This section is incomplete.
7-
:::
61+
:::

0 commit comments

Comments
 (0)