# pyramidvue **Repository Path**: mirrors_eddyekofo94/pyramidvue ## Basic Information - **Project Name**: pyramidvue - **Description**: Pyramid Web Framework (Python) implemented with Vuejs (JavaScript) & Webpack (HMR): starter template - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-25 - **Last Updated**: 2025-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Pyramid Webframework with Vuejs & Webpack (HMR thanks to [Thijs Damsma](https://github.com/tdamsma)) ================== ## Features 1. [Pyramid Webframework](http://docs.pylonsproject.org/projects/pyramid/en/latest/index.html) 2. [Vue2](https://github.com/vuejs/vue) 3. [Node.js](https://github.com/nodejs/node) 4. [Webpack3](https://github.com/webpack/webpack) 5. [Babel](https://github.com/babel/babel.git) 6. [Yarn](https://github.com/yarnpkg/yarn) [packet manager] Getting Started --------------- ### First clone ```bash git clone https://github.com/eddyekofo94/pyramidVue.git ``` ## First create a virtual environment, otherwise by default python instance available will be used (I recomend the former). ```bash make venv # or if you have virtualenv installed virtualenv -p python3 ./env ``` ### Make sure you activate your virtual environment!! ```bash source env/bin/activate ``` ### Development environment setup These steps will install all required dependencies, then run the server. ```bash # download all the required requirements for development make dev # test your project make test # run your project # Go to: localhost:6543 (webpack-dev-server runs on localhost:8080) make run ``` ### Errors encountered ```bash # Don't have the webpack-dev-server installed /bin/sh: webpack-dev-server: command not found # Fix: yarn global add webpack-dev-server ``` ```bash ### Deployment ```bash # make sure the webpack-dev-server setting in production.ini is not set to true make build ``` External links --------------- http://docs.pylonsproject.org/projects/pyramid/en/latest/index.html https://vuejs.org https://webpack.js.org