Skip to content

Commit

Permalink
added back in .env.example, modified .gitignore to ignore vscode dire…
Browse files Browse the repository at this point in the history
…ctory, removed commented out html in vue pages
  • Loading branch information
paulmakarov committed Apr 13, 2018
1 parent c56ff0e commit b201863
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 52 deletions.
11 changes: 6 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
APP_NAME=your-app-name
APP_NAME=Laravel
APP_ENV=local
APP_KEY=your_key_goes_here
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=pgsql
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
Expand All @@ -30,4 +31,4 @@ MAIL_ENCRYPTION=null

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_SECRET=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/vendor
/.idea
/.vagrant
.vscode/
Homestead.json
Homestead.yaml
npm-debug.log
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@
"devDependencies": {
"axios": "^0.16.2",
"bulma": "^0.6.0",
"bulmaswatch": "^0.6.2",
"cross-env": "^5.0.1",
"eslint": "^4.10.0",
"eslint-plugin-vue": "^3.14.0",
"font-awesome": "^4.7.0",
"laravel-echo": "^1.3.5",
"laravel-mix": "^1.0",
"moment": "^2.20.1",
"pusher-js": "^4.2.2",
"typeface-fira-sans": "^0.0.54",
"vue": "^2.1.10",
"vue-router": "^3.0.1"
},
"dependencies": {
"bulmaswatch": "^0.6.2",
"font-awesome": "^4.7.0"
}
}
11 changes: 1 addition & 10 deletions resources/assets/js/components/App.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
<template>
<div>
<facet-navigation></facet-navigation>

<!-- <section class="hero is-light is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">Welcome to FACET</h1>
<h2 class="subtitle">This is the Post-Award Module</h2>
</div>
</div>
</section> -->


<router-view></router-view>

<flash-message></flash-message>
Expand Down
23 changes: 5 additions & 18 deletions resources/assets/js/components/FacetLandingPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,7 @@
This system is built on powerful open source frameworks leveraging each for its core strengths and handing off defined contacts between system segments.
</p>
</div>
<!-- <div class="container is-fluid">
<h1>FACET</h1>
<section>
<h1>Getting Started Guide</h1>
<h2>FACET Post Award</h2>
<p>Post Award is contract entitlement and administration system designed arond the federated microservices computing model and built from the ground up for cloud-based computuing and microdeployments as needed.</p>
<h2>Technologies</h2>
<p>This system is built on powerful open source frameworks leveraging each for its core strengths and handing off defined contacts between system segments.</p>
</section>
</div> -->

<section class="container">
<div class="columns features">
<div class="column is-4">
Expand Down Expand Up @@ -84,9 +71,9 @@
</template>

<script>
export default {
mounted() {
console.log('Root component mounted.')
}
export default {
mounted() {
console.log("Root component mounted.");
}
};
</script>
15 changes: 0 additions & 15 deletions resources/assets/js/components/NavBar.Vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,6 @@
</div>
</div>
</nav>
<!-- <nav class="navbar is-primary is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a href="https://github.com/facet-acq" class="navbar-item">
<img src="images/facet.svg" alt="FACET Acquistion a fractal to ">
</a>
</div>
<button class="button navbar-burger">
<router-link v-for="item in menu" :to="item.link" :key="item.label"><span>{{item.label}}</span></router-link>
</button>
<div class="navbar-menu">
</div>
</nav> -->
</template>

<script>
Expand Down

0 comments on commit b201863

Please sign in to comment.