Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayzhuca/falconx-robotics-website
Website for FalconX Robotics.
https://github.com/rayzhuca/falconx-robotics-website
6662 falconx falconx-robotics spring spring-boot website
Last synced: about 1 month ago
JSON representation
Website for FalconX Robotics.
- Host: GitHub
- URL: https://github.com/rayzhuca/falconx-robotics-website
- Owner: rayzhuca
- Created: 2019-07-16T23:16:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-11T01:52:54.000Z (almost 2 years ago)
- Last Synced: 2024-04-23T23:58:02.300Z (9 months ago)
- Topics: 6662, falconx, falconx-robotics, spring, spring-boot, website
- Language: SCSS
- Homepage:
- Size: 3.39 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
This is the old repository for the upcoming website of FalconX Robotics. This project is currently not in development.
[Here](https://falconxrobotics.herokuapp.com/) is the link (inactive).
## Cautions
Remember to never leak Google Sheets authentication files onto git.
If you do, remember to immediately:
- Make the repo private
- Undo the changes
- Refresh the tokens### How to push to Heroku without leaking Credentials
Run the following commands on git bash.
```
git branch -D product
git branch product master
git checkout product
```
Then, remove `secrets/` in [.gitignore](.gitignore) and run the following.
```
git commit -a -m "Added Credentials for Heroku."
git push heroku product:master -f
```
Lastly, to return back to the master branch:
```
git checkout master
```