Repository for the upcoming Camp Hest website -- it will be horseome.
Camp Hest is a concept created at the Danish Roskilde Festival. This upcoming website will contain information related to the camp's Roskilde participation, about upcoming events @ Roskilde Festival, pictures, videos -- let's see what we make it!
Visit the website at camphest.herokuapp.com
- NodeJS
- Vue.js
- Bootstrap Vue
- TypeScript
Execute the following command to load dependencies:
$ npm install -g @vue-cli
$ npm i vue vue-router
$ npm install
npm install
npm run serve
npm run build
Run this command before pushing to IBM cloud to put your changes into effect.
npm run lint
To be able to deploy your changes to the IBM Cloud instance running the web page you need an IBM account. Ask @frksteenhoff for more information.
./ <-- Repository
├── ..
├── public/ <-- if build fails, show this
├── dist/ <-- static build of webpage
├── src/ <-- source code
│ ├── assets/
│ │ ├── heste_fest/ <-- Awesome pics of Camp Hest people @ Roskilde
│ │ ├── heste_mates/ <-- Close-up of the horsies <3
│ │ ├── heste_promo/ <-- Them logos
│ │ └── *.{png, jpg..} <-- uncategorized images
│ ├── router/
│ ├── components/
│ │ ├── About.vue <-- Camp Hest who?
│ │ ├── Contact.vue <-- Looking for a stable relationship?
│ │ ├── Events.vue <-- What do we do @ Roskilde
│ │ ├── Hello.vue <-- Front page
│ │ ├── Navigation.vue <-- Routing logic
│ ├── main.js
│ └── App.vue <-- Parent
│
├── node_modules/ <-- node modules
├── .gitignore <-- The stuff we don't care about
├── .cfignore <-- Information neede when pushing to IBM Cloud (Cloud Foundry)
├── manifest.yml <-- Information for cloud purposes
├── package.json <-- All that formal stuff
├── README.md <-- The project description made easy
└── ...