Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating manifest & js #54

Merged
merged 2 commits into from
May 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,25 @@ mailcatcher
You can then view the emails sent by your application by navigating to [http://localhost:1080](http://localhost:1080) in your web browser.

# Deploying to Heroku
Step 1. Create a new Heroku app
### Step 1. Create a new Heroku app
```bash
heroku create
```

Step 2. Deploy the customizations branch
### Step 2: Add buildpacks
Add `heroku/ruby` and `heroku/nodejs` buildpacks to your Heroku app.
```bash
heroku buildpacks:add heroku/ruby
heroku buildpacks:add heroku/nodejs
```

### Step 3: Configure the environment variables
Configure the environment variables using the `heroku config:set` command.
You can find the necessary keys and values in the `.env` file.


### Step 4. Deploy the customizations branch
You can deploy the customizations branch to Heroku using the following command:
```bash
git push heroku customizations:main
```
Expand Down
5 changes: 1 addition & 4 deletions app/assets/config/manifest.js
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
//= link_tree ../images
//= link_directory ../stylesheets .css
//= link_tree ../../javascript .js
//= link_tree ../../../vendor/javascript .js
//= link_tree ../images
Loading