remove August meetup
parent
3781efde27
commit
3de56013af
|
@ -7,7 +7,7 @@ location: Frog Alley Brewing Co
|
||||||
address: 108 State St, Schenectady
|
address: 108 State St, Schenectady
|
||||||
time: 6:00 PM
|
time: 6:00 PM
|
||||||
meetup: 298555131
|
meetup: 298555131
|
||||||
priority: 3
|
priority: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
|
|
@ -7,7 +7,7 @@ location: Druther's Brewing Company
|
||||||
address: 7 Southside Drive, Clifton Park
|
address: 7 Southside Drive, Clifton Park
|
||||||
time: 6:00 PM
|
time: 6:00 PM
|
||||||
meetup: 301820211
|
meetup: 301820211
|
||||||
priority: 2
|
priority: 1
|
||||||
---
|
---
|
||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
---
|
|
||||||
title: Monthly Meetup
|
|
||||||
slug: monthly-meetup-8-7-2024
|
|
||||||
date: 2024-8-7
|
|
||||||
published: 2024-8-7
|
|
||||||
location: Druther's Brewing Company
|
|
||||||
address: 221 Harborside Drive, Schenectady
|
|
||||||
time: 6:00 PM
|
|
||||||
priority: 1
|
|
||||||
---
|
|
||||||
|
|
||||||
## Details
|
|
||||||
|
|
||||||
Our monthly Bitcoin meetup! This is a Bitcoin only event. Whether you are interested in learning about Bitcoin, or are a seasoned pleb, come and hang out! We will have learning materials for those who are just starting out.
|
|
||||||
|
|
||||||
This has grown into a great event about meeting new plebs, socializing, and talking all things bitcoin. Hope you all can make it! Feel free to bring a friend or two to orange pill :-). Appetizers and first hour of drinks will be provided.
|
|
|
@ -7,7 +7,7 @@ location: Mocha Lisa's Caffe
|
||||||
address: 22 Clifton Country Road, Clifton Park
|
address: 22 Clifton Country Road, Clifton Park
|
||||||
time: 6:00 PM
|
time: 6:00 PM
|
||||||
meetup: 298119830
|
meetup: 298119830
|
||||||
priority: 9999
|
priority: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
|
|
@ -2,21 +2,27 @@
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
devtools: { enabled: false },
|
devtools: { enabled: false },
|
||||||
|
|
||||||
modules: ['@nuxt/content', '@nuxtjs/device', ['nuxt-mail', {
|
modules: [
|
||||||
message: {
|
"@nuxt/content",
|
||||||
to: process.env.EMAIL,
|
"@nuxtjs/device",
|
||||||
},
|
[
|
||||||
smtp: {
|
"nuxt-mail",
|
||||||
host: process.env.SMTP_HOST,
|
{
|
||||||
port: process.env.SMTP_PORT,
|
message: {
|
||||||
auth: {
|
to: process.env.EMAIL,
|
||||||
user: process.env.SMTP_USER,
|
},
|
||||||
pass: process.env.SMTP_PASS,
|
smtp: {
|
||||||
|
host: process.env.SMTP_HOST,
|
||||||
|
port: process.env.SMTP_PORT,
|
||||||
|
auth: {
|
||||||
|
user: process.env.SMTP_USER,
|
||||||
|
pass: process.env.SMTP_PASS,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
],
|
||||||
}], "@nuxt/image"],
|
"@nuxt/image",
|
||||||
|
|
||||||
css: [
|
|
||||||
"~/assets/style/main.scss",
|
|
||||||
],
|
],
|
||||||
})
|
|
||||||
|
css: ["~/assets/style/main.scss"],
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue