Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Andreas Sosilo - Batch 34 - Humble Fox #10

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# mini-wp
# Think Tank - Mini WordPress

## Link Deploy
http://thinktank.andreassosilo.co/

## How to use locally

### On server
```javascript
$ npm install
$ npm run dev
```

### On client
```javascript
$ npm install
$ parcel index.html
```
Access client via `http://localhost:1234`

Access server via `http://localhost:3000`

## API Documentation (using POSTMAN)
```
https://documenter.getpostman.com/view/8640330/SVmtyKSH
```
23 changes: 23 additions & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
env: {
browser: true,
es6: true
},
extends: [
'plugin:vue/essential',
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'vue'
],
rules: {
}
}
4 changes: 4 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
.DS_Store
dist
.cache
Binary file added client/assets/images/bali.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/assets/images/beansprout.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/assets/images/food.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/assets/images/landing.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/assets/images/nature.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/assets/images/paris.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions client/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
* {
margin: 0;
padding: 0;
}

/* Style the body for background color and font */
body {
background: #f0f0f0;
font-family: "Crimson Pro", serif;
}

/* Style the dashboard (view post) container so between card (post) there is a sufficient space */
.content {
margin-top: 10px;
}

/* Style the create post container so it will not be too wide */
#createPost {
max-width: 80%;
}

/* Style the edit post container so it will not be too wide */
#editPost {
max-width: 80%;
}

/* Style the top navigation bar using flexbox */
.navbar {
display: flex;
background-color: #333;
font-family: "Crimson Pro";
justify-content: space-around;
}

.card-img-top {
max-height: 200px;
overflow: hidden;
}
Loading