Deploying Abell App
Published on Sun May 10 2020
Deployment
You can either Deploy from a GitHub Repository or Deploy folder manually.
Deploy with GitHub Pages
1. Create GitHub Repository
- Create a GitHub repository on your GitHub account
- Push the content from this project to your repository.
git init
git remote add origin <your-github-project-url>
git add .
git commit -m "init"
git push origin master # Replace 'master' with your default branch name
2. Create Project on Netlify (or other hosting platform)
- Go to Netlify (or any other hosting platform you like)
- Create new project/site from your new GitHub repository to the project.
3. Set Deploy Options
Set deploy options to -
Build Command: npm run build
Publish Directory: dist
Deploy Folder
- Open Netlify and login to your account.
- Run
npm run buildfrom root of your project. - Drag-Drop new
distdirectory to Netlify window.