Skip to content

Commit 28d32cd

Browse files
committed
UI issues Resolved
1 parent ec91a1b commit 28d32cd

File tree

9 files changed

+27
-27
lines changed

9 files changed

+27
-27
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
/dist
4+
tempKey.js
45

56
# local env files
67
.env.local

.travis.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: node_js
22
node_js:
3-
- "4.0"
3+
- "10.15.2"
44
script:
55
- echo "Deploying"
6-
install:
6+
7+
before_script:
78
- npm install -g firebase-tools
8-
after_success:
9+
- npm install -g @vue/cli@latest
10+
- npm install
11+
12+
script:
913
- npm run build
10-
after_success:
11-
- firebase deploy --token $FKEY
14+
15+
after_success:
16+
- firebase deploy --token $FKEY
17+

README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/Vrijraj/aura.svg?branch=master)](https://travis-ci.org/Vrijraj/aura)
44

5-
<img width="100%" src="https://doc-0g-20-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/1o2trjk5rdn7se60vjushc9q3k662n8h/1551355200000/03213074667067221613/*/1VOuBc_AnzShLOrdINh62I_jeVlnPWxRX">
5+
<img width="100%" src="https://doc-0g-20-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/pl7gen3ksdidgug05est5v9a3p25ku4a/1551448800000/03213074667067221613/*/1VOuBc_AnzShLOrdINh62I_jeVlnPWxRX">
66

77
Standard Web App for GDG Communties. <br>
88
[Demo](https://aura-client-master.firebaseapp.com/) <br>
@@ -27,20 +27,17 @@ The template is created by [GDG Jalandhar](https://meetup.com/GDG-Jalandhar/) te
2727
## Getting Started
2828
1. [Fork repository](https://github.com/Vrijraj/aura/fork) and clone it locally
2929
1. Install project dependencies: `npm install`
30+
1. Find the [Meetup API Key](https://secure.meetup.com/meetup_api/key/) and paste it [here](/src/config/key.js), also replace the chapter URL from `Meetup.com/[gdg-chapter-url]`
3031
1. Compiles and hot-reloads for development: `npm run serve`
31-
1. Update [Firebase Web Setup & Basic Info](/public/index.html), [manifest.json](/src/manifest.json) and [Resources](/src/assets/data)
32+
1. Update [Firebase Web Setup & Basic Info](/public/index.html), [manifest.json](/public/manifest.json) and [Resources](/src/assets/data)
33+
1. For the production: `npm run build` and then one dir will be created `dist`
34+
1. For testing: `npm run test`
35+
36+
## Deploy your Web App on Firebase
37+
3238
1. Setup Environment for the Firebase deployment
3339
* Install Firebase CLI: `npm i -g firebase-tools` or `yarn global add firebase-tools`
3440
1. Create [Firebase account](https://console.firebase.google.com) and login into [Firebase CLI](https://firebase.google.com/docs/cli/): `firebase login`
35-
1. Update `.firebaserc` file
36-
```js
37-
{
38-
"projects": {
39-
"default": "Your_Firebase_Project_ID"
40-
}
41-
}
42-
```
43-
4441
1. Open Terminal/CMD/Powershell in your dir.
4542
1. Now type `firebase login` command in your Terminal/CMD/Powershell.
4643
1. Type `firebase init`.
@@ -49,13 +46,13 @@ The template is created by [GDG Jalandhar](https://meetup.com/GDG-Jalandhar/) te
4946
1. Click `No` for Single page web app.
5047
1. Type `dist`.
5148
1. Some by default file will be created successfully.
52-
1. Move the cloned source file in `dist` dir.
5349
1. Run locally
5450
* `firebase serve` or `npm run serve` or `yarn serve`
5551
1. Build and deploy
5652
* `firebase deploy` or `npm run deploy` or `yarn deploy`
5753

5854

55+
5956
### Run your tests
6057
1. For Test: `npm run test`
6158

src/components/about/aboutGDGChapter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323

2424
<p class="google-font grey--text mt-3" style="font-size:120%">{{chapterDetails.aboutGDGProgram}}</p>
2525

26-
<v-btn :href="chapterDetails.ChapterMeetupLink" target="_blank" class="ma-0 google-font elevation-1" color="#518FF5" style="text-transform: capitalize;border-radius:7px;color:white">Become a Member</v-btn>
26+
<v-btn :href="chapterDetails.ChapterMeetupLink" target="_blank" class="ma-0 google-font elevation-1" color="#1a73e8" style="text-transform: capitalize;border-radius:5px;color:white">Become a Member</v-btn>
2727
&nbsp;
2828

29-
<v-btn href="https://developers.google.com/groups" target="_blank" outline color="cyan" style="text-transform: capitalize;border-radius:7px" flat class="ml-0" dark>Learn More</v-btn>
29+
<v-btn href="https://developers.google.com/groups" target="_blank" outline color="cyan" style="text-transform: capitalize;border-radius:5px" class="ml-0" dark>Learn More</v-btn>
3030
</v-flex>
3131

3232
</v-layout>

src/components/events/upcomingEvents.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ export default {
119119
this.showData = true
120120
this.showData1 = true
121121
this.eventsData = res
122-
console.log(res)
123122
})
124123
},
125124
filters:{

src/components/home/HomeStartScreen.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
</span>
3030
</p>
3131

32-
<v-btn :href="chapterDetails.ChapterMeetupLink" target="_blank" class="ma-0 google-font" color="#518FF5" style="text-transform: capitalize;border-radius:7px;color:white">Become a Member</v-btn>
32+
<v-btn :href="chapterDetails.ChapterMeetupLink" target="_blank" class="ma-0 google-font elevation-1" color="#1a73e8" style="text-transform: capitalize;border-radius:5px;color:white">Become a Member</v-btn>
3333

3434
&nbsp;
3535

36-
<v-btn :href="chapterDetails.GDGProgramWebsite" target="_blank" round color="cyan" style="text-transform: capitalize;border-radius:7px;text-transform: capitalize;" flat class="ml-0" dark>Learn More</v-btn>
36+
<v-btn :href="chapterDetails.GDGProgramWebsite" target="_blank" round color="cyan" style="text-transform: capitalize;border-radius:5px;text-transform: capitalize;" outline class="ml-0" dark>Learn More</v-btn>
3737

3838
</v-flex>
3939
</v-layout>

src/components/home/eventshowcase.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<p class="google-font" style="font-size:120%">
77
At sessions that span from the technical to the visionary, let’s celebrate and discover what the technologies can enable: how product innovation, open source, and ML and AI can propel enterprises forward and solve the big problems that impact all of us.
88
</p>
9-
<v-btn flat color="#4C4A78" class="ma-0 google-font" style="border-radius:7px;text-transform: capitalize;">See More</v-btn>
9+
<router-link to="/events" flat color="#4C4A78" class="ma-0 google-font" style="border-radius:5px;text-transform: capitalize;text-decoration:none;color:#4C4A78">See More</router-link>
1010
</v-flex>
1111
</v-layout>
1212

@@ -110,7 +110,6 @@ export default {
110110
},
111111
created(){
112112
fetch('https://cors.io/?https://api.meetup.com/'+MeetupAPI.urlname+'/events?desc=true&photo-host=public&page=4&status=past&key='+MeetupAPI.apiKey).then(data=>data.json()).then(res=>{
113-
console.log(res)
114113
this.showLoader = false
115114
this.showData = true
116115
this.eventsData = res

src/config/key.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const MeetupAPI = {
2-
apiKey : "674a5ab597d951c31467e6c502b60",
2+
apiKey : "",
33
urlname: "GDG-Jalandhar"
44
}

src/views/Contact.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@
5353

5454
<script>
5555
import ChapterDetails from '@/assets/data/chapterDetails.json'
56-
import aboutGDGChapter from '@/components/about/aboutGDGChapter'
5756
5857
export default {
5958
components: {
60-
aboutGDGChapter,
6159
},
6260
data() {
6361
return {

0 commit comments

Comments
 (0)